aboutsummaryrefslogtreecommitdiff
path: root/tests/common.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common.lua')
-rw-r--r--tests/common.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/common.lua b/tests/common.lua
index 156f882..47e3f56 100644
--- a/tests/common.lua
+++ b/tests/common.lua
@@ -231,7 +231,9 @@ end
231function run_test_group(testgroup, tests) 231function run_test_group(testgroup, tests)
232 local function run_config(configname, func) 232 local function run_config(configname, func)
233 local success, msg = pcall(func) 233 local success, msg = pcall(func)
234 print(string.format("==> Config %s: %s", configname, msg)) 234 if msg then
235 print(string.format("==> Config %s: %s", configname, msg))
236 end
235 print() 237 print()
236 end 238 end
237 239