summaryrefslogtreecommitdiffstats
path: root/tests/run_tests
diff options
context:
space:
mode:
authorMatthew Hicks <mhicks@mhicks-host.usersys.redhat.com>2008-05-06 09:58:06 -0400
committerBrenton Leanhardt <bleanhar@redhat.com>2008-05-15 15:42:08 -0400
commit882ba5be7f4e9f41bf34aff7e85049f30c4d23a5 (patch)
tree897e4a9e484d89ded64349bb84a7b0e426eba985 /tests/run_tests
parent9c4703b25e43a3102ac79d6c5d15ea24f8e034d6 (diff)
downloadpuppet-mysql-882ba5be7f4e9f41bf34aff7e85049f30c4d23a5.tar.gz
puppet-mysql-882ba5be7f4e9f41bf34aff7e85049f30c4d23a5.tar.xz
puppet-mysql-882ba5be7f4e9f41bf34aff7e85049f30c4d23a5.zip
Removing the mysql plugin
Diffstat (limited to 'tests/run_tests')
-rwxr-xr-xtests/run_tests13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/run_tests b/tests/run_tests
deleted file mode 100755
index 1ae6c42..0000000
--- a/tests/run_tests
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-export RUBYLIB=${RUBYLIB:-../plugins}
-OPTIONS="$*"
-OPTIONS="${OPTIONS:---trace}"
-
-find -iname \*.pp | sort | while read current; do
- echo "Running $current"
- puppet $OPTIONS $current
- echo "Running $current again"
- puppet $OPTIONS $current
- echo
-done