From 62d8a8392cd41f2553462f455ad9a1f1ef151026 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Mon, 22 May 2017 00:15:52 +1000 Subject: tests/test-suite/inprogress/errors.js: Remove progress prints --- tests/test-suite/inprogress/errors.js | 5 ----- 1 file changed, 5 deletions(-) (limited to 'tests/test-suite') diff --git a/tests/test-suite/inprogress/errors.js b/tests/test-suite/inprogress/errors.js index 75c6f81..77e34cf 100644 --- a/tests/test-suite/inprogress/errors.js +++ b/tests/test-suite/inprogress/errors.js @@ -846,11 +846,8 @@ test("[test-suite] errors: several tests that exhaust the Lua stack", { skip: tr end -- repeated stack overflows (to check stack recovery) assert(checkstackmessage(doit('y()'))) - print('+') assert(checkstackmessage(doit('y()'))) - print('+') assert(checkstackmessage(doit('y()'))) - print('+') `, L; t.plan(2); @@ -882,7 +879,6 @@ test("[test-suite] errors: error lines in stack overflow", { skip: true }, funct l1 = debug.getinfo(x, "l").currentline; y() end local _, stackmsg = xpcall(g, debug.traceback, 1) - print('+') local stack = {} for line in string.gmatch(stackmsg, "[^\\n]*") do local curr = string.match(line, ":(%d+):") @@ -921,7 +917,6 @@ test("[test-suite] errors: error in error handling", function (t) { let luaCode = ` local res, msg = xpcall(error, error) assert(not res and type(msg) == 'string') - print('+') local function f (x) if x==0 then error('a\\n') -- cgit v1.2.3-54-g00ecf