Add script to test all recipes

There is a "safety" to prevent it from being run accidentally. Whe
running it, it simply prints out the command that will test all the
recipes. The user must then paste that command back into the shell to
actually run the tests.
This commit is contained in:
Ryan C. Thompson 2012-02-20 02:24:10 -08:00
parent 885fdc8a53
commit 4a7b8f3b4c

6
test/test-all-recipes.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
cd "$(dirname "$0")"
echo "If you are sure you want to test ALL the recipes, run the following command:"
echo "exec $PWD/test-recipe.sh $PWD/../recipes/*.rcp 2>/dev/null"