diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-22 00:15:52 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-22 00:50:41 +1000 |
commit | 62d8a8392cd41f2553462f455ad9a1f1ef151026 (patch) | |
tree | 0c9ef1d197f53be88d334491d647901fd0f2427e /tests/test-suite | |
parent | a1e60cb35b921fee162b545e8399738ffb4f55ab (diff) | |
download | fengari-62d8a8392cd41f2553462f455ad9a1f1ef151026.tar.gz fengari-62d8a8392cd41f2553462f455ad9a1f1ef151026.tar.bz2 fengari-62d8a8392cd41f2553462f455ad9a1f1ef151026.zip |
tests/test-suite/inprogress/errors.js: Remove progress prints
Diffstat (limited to 'tests/test-suite')
-rw-r--r-- | tests/test-suite/inprogress/errors.js | 5 |
1 files changed, 0 insertions, 5 deletions
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') |