[LibOS] test: Add missing dependencies in Makefiles

This commit is contained in:
Isaku Yamahata
2020-02-04 02:49:18 +01:00
committed by Michał Kowalczyk
parent 7377a787bc
commit d379bba600
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -34,8 +34,8 @@ test: $(target)
$(RM) fs-test.xml
$(MAKE) fs-test.xml
fs-test.xml:
python3 -m pytest --junit-xml $@ -v test_fs.py
fs-test.xml: test_fs.py $(call expand_target_to_token,$(target))
python3 -m pytest --junit-xml $@ -v $<
.PHONY: clean-tmp
clean-tmp:
+2 -2
View File
@@ -48,8 +48,8 @@ regression: $(target)
$(RM) libos-regression.xml
$(MAKE) libos-regression.xml
libos-regression.xml:
python3 -m pytest --junit-xml $@ -v test_libos.py
libos-regression.xml: test_libos.py $(call expand_target_to_token,$(target))
python3 -m pytest --junit-xml $@ -v $<
.PHONY: clean-tmp
clean-tmp:
+1 -1
View File
@@ -108,7 +108,7 @@ regression:
$(MAKE) pal-regression.xml
pal-regression.xml: test_pal.py $(call expand_target_to_token,$(target))
python3 -m pytest --junit-xml $@ -v test_pal.py
python3 -m pytest --junit-xml $@ -v $<
.PHONY: clean
clean: