summaryrefslogtreecommitdiff
path: root/test/test-lace.lex.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-lace.lex.lua')
-rw-r--r--test/test-lace.lex.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-lace.lex.lua b/test/test-lace.lex.lua
index 41f1685..543309a 100644
--- a/test/test-lace.lex.lua
+++ b/test/test-lace.lex.lua
@@ -262,7 +262,7 @@ end
local count_ok = 0
for _, testname in ipairs(testnames) do
- print("Run: " .. testname)
+-- print("Run: " .. testname)
local ok, err = xpcall(suite[testname], debug.traceback)
if not ok then
print(err)
@@ -272,6 +272,6 @@ for _, testname in ipairs(testnames) do
end
end
-print("Lex: " .. tostring(count_ok) .. "/" .. tostring(#testnames) .. " OK")
+print(tostring(count_ok) .. "/" .. tostring(#testnames) .. " OK")
os.exit(count_ok == #testnames and 0 or 1)