From 7df50b1bf55b10cbd4fd1f31e8a9f8ee0bf79df8 Mon Sep 17 00:00:00 2001 From: Mark Pulford Date: Mon, 26 Dec 2011 23:48:20 +1030 Subject: Display failed test count (test.lua) --- tests/test.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.lua b/tests/test.lua index 90d216c..6a1a8a2 100755 --- a/tests/test.lua +++ b/tests/test.lua @@ -247,7 +247,7 @@ end local pass, total = run_test_summary() -print(string.format("==> Summary: %d/%d tests succeeded", pass, total)) +print(string.format("==> Summary: %d/%d tests failed", total - pass, total)) if pass ~= total then os.exit(1) -- cgit v1.2.3-55-g6feb