aboutsummaryrefslogtreecommitdiff
path: root/testes/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'testes/main.lua')
-rw-r--r--testes/main.lua29
1 files changed, 29 insertions, 0 deletions
diff --git a/testes/main.lua b/testes/main.lua
index b224b54e..0ef4822d 100644
--- a/testes/main.lua
+++ b/testes/main.lua
@@ -221,6 +221,28 @@ assert(string.find(getoutput(), "error calling 'print'"))
221RUN('echo "io.stderr:write(1000)\ncont" | lua -e "require\'debug\'.debug()" 2> %s', out) 221RUN('echo "io.stderr:write(1000)\ncont" | lua -e "require\'debug\'.debug()" 2> %s', out)
222checkout("lua_debug> 1000lua_debug> ") 222checkout("lua_debug> 1000lua_debug> ")
223 223
224-- test warnings
225RUN('echo "io.stderr:write(1); warn[[XXX]]" | lua -q 2> %s', out)
226checkout("1")
227
228prepfile[[
229warn("@allow") -- unknown control, ignored
230warn("@off", "XXX", "@off") -- these are not control messages
231warn("@off") -- this one is
232warn("@on", "YYY", "@on") -- not control, but warn is off
233warn("@off") -- keep it off
234warn("@on") -- restart warnings
235warn("", "@on") -- again, no control, real warning
236warn("@on") -- keep it "started"
237warn("Z", "Z", "Z") -- common warning
238]]
239RUN('lua %s 2> %s', prog, out)
240checkout[[
241Lua warning: @offXXX@off
242Lua warning: @on
243Lua warning: ZZZ
244]]
245
224-- test many arguments 246-- test many arguments
225prepfile[[print(({...})[30])]] 247prepfile[[print(({...})[30])]]
226RUN('lua %s %s > %s', prog, string.rep(" a", 30), out) 248RUN('lua %s %s > %s', prog, string.rep(" a", 30), out)
@@ -355,8 +377,15 @@ if T then -- test library?
355 NoRun("not enough memory", "env MEMLIMIT=100 lua") 377 NoRun("not enough memory", "env MEMLIMIT=100 lua")
356 378
357 -- testing 'warn' 379 -- testing 'warn'
380 warn("@store")
358 warn("@123", "456", "789") 381 warn("@123", "456", "789")
359 assert(_WARN == "@123456789") 382 assert(_WARN == "@123456789")
383
384 warn("zip", "", " ", "zap")
385 assert(_WARN == "zip zap")
386 warn("ZIP", "", " ", "ZAP")
387 assert(_WARN == "ZIP ZAP")
388 warn("@normal")
360end 389end
361 390
362do 391do