From 4a7b8f3b4c32cfcd61605f8de16527361300bafe Mon Sep 17 00:00:00 2001 From: "Ryan C. Thompson" Date: Mon, 20 Feb 2012 02:24:10 -0800 Subject: [PATCH] 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. --- test/test-all-recipes.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 test/test-all-recipes.sh diff --git a/test/test-all-recipes.sh b/test/test-all-recipes.sh new file mode 100755 index 00000000..277de1bc --- /dev/null +++ b/test/test-all-recipes.sh @@ -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"