summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-05-13 02:14:37 -0700
committerelijah <elijah@riseup.net>2014-05-13 02:14:37 -0700
commita3f923e66b05ffc12037b239995f463f81ea229d (patch)
tree6b7fee1a8f8f9680508d77030896659c46c9c3e9 /bin
parent071547967cc00acf18bf68b78e350131017852b9 (diff)
added simple shorewall whitebox test (close #5649)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/run_tests10
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/run_tests b/bin/run_tests
index 9102c325..526aa83a 100755
--- a/bin/run_tests
+++ b/bin/run_tests
@@ -288,6 +288,16 @@ def assert_running(process)
end
#
+# runs the specified command, failing on a non-zero exit status.
+#
+def assert_run(command)
+ output = `#{command}`
+ if $?.exitstatus != 0
+ fail "Error running `#{command}`:\n#{output}"
+ end
+end
+
+#
# Custom test runner in order to modify the output.
#
class LeapRunner < MiniTest::Unit