Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBryan Drewery <bryan@shatow.net>2019-10-03 20:42:48 +0300
committerBryan Drewery <bryan@shatow.net>2019-10-03 20:42:48 +0300
commite32ba5be7830f48679689806b9f5a8d53244d369 (patch)
tree0921fe64ce252c74e67bb80e9b3c19272a8b1865 /test
parentb022ecef61e1188f530c44154efb31bdfc071edf (diff)
Always prep before running tests
Diffstat (limited to 'test')
-rw-r--r--test/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile
index 59d93a03..d018b8bc 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -41,15 +41,16 @@ TESTS=\
bulk-flavor-metadata-queue-ordering-multi-pass.sh \
bulk-flavor-ignore-all.sh
-all: check check-stock
+all: prep check check-stock
prep: .PHONY
+ @echo "Prepping test jail"
@sh prep.sh
-check: .PHONY
+check: .PHONY prep
@echo "Running tests against modified sh"
@sh runtests.sh sh ${TESTS}
-check-stock: .PHONY
+check-stock: .PHONY prep
@echo "Running tests against stock /bin/sh"
@sh runtests.sh /bin/sh ${TESTS}