Skip to content
Snippets Groups Projects
Commit 47bf22d8 authored by bbartels's avatar bbartels
Browse files

quad: use "make test" target to run the functional tests

parent 52fc7ab5
No related branches found
No related tags found
No related merge requests found
...@@ -4,4 +4,4 @@ set -e ...@@ -4,4 +4,4 @@ set -e
# Quad Libraries and Boot image # Quad Libraries and Boot image
(cd quad && make) (cd quad && make)
#(cd groundStation && make) #(cd groundStation && make)
#!/bin/bash #!/bin/bash
set -e set -e
# Quad Library Unit tests
(cd quad && make && make test)
# Quad functional safety tests
export PATH=/usr/local/bin:$PATH export PATH=/usr/local/bin:$PATH
echo $(ruby --version)
ruby quad/scripts/tests/test_safety_checks.rb # Quad
(cd quad && make test)
...@@ -34,10 +34,11 @@ boot: $(BOOT) ...@@ -34,10 +34,11 @@ boot: $(BOOT)
run-virt-quad: run-virt-quad:
$(MAKE) -C src/virt_quad run $(MAKE) -C src/virt_quad run
test: test: all
$(MAKE) -C src/queue test $(MAKE) -C src/queue test
$(MAKE) -C src/computation_graph test $(MAKE) -C src/computation_graph test
$(MAKE) -C src/quad_app test $(MAKE) -C src/quad_app test
ruby scripts/tests/test_safety_checks.rb
clean: clean:
rm -rf $(INCDIR) $(LIBDIR) $(OUTDIR) $(EXEDIR) rm -rf $(INCDIR) $(LIBDIR) $(OUTDIR) $(EXEDIR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment