aboutsummaryrefslogtreecommitdiff
path: root/testes
diff options
context:
space:
mode:
Diffstat (limited to 'testes')
-rw-r--r--testes/main.lua35
1 files changed, 30 insertions, 5 deletions
diff --git a/testes/main.lua b/testes/main.lua
index 9def6386..9187420e 100644
--- a/testes/main.lua
+++ b/testes/main.lua
@@ -94,6 +94,33 @@ RUN('echo "print(10)\nprint(2)\n" | lua > %s', out)
94checkout("10\n2\n") 94checkout("10\n2\n")
95 95
96 96
97-- testing BOM
98prepfile("\xEF\xBB\xBF")
99RUN('lua %s > %s', prog, out)
100checkout("")
101
102prepfile("\xEF\xBB\xBFprint(3)")
103RUN('lua %s > %s', prog, out)
104checkout("3\n")
105
106prepfile("\xEF\xBB\xBF# comment!!\nprint(3)")
107RUN('lua %s > %s', prog, out)
108checkout("3\n")
109
110-- bad BOMs
111prepfile("\xEF")
112NoRun("unexpected symbol", 'lua %s > %s', prog, out)
113
114prepfile("\xEF\xBB")
115NoRun("unexpected symbol", 'lua %s > %s', prog, out)
116
117prepfile("\xEFprint(3)")
118NoRun("unexpected symbol", 'lua %s > %s', prog, out)
119
120prepfile("\xEF\xBBprint(3)")
121NoRun("unexpected symbol", 'lua %s > %s', prog, out)
122
123
97-- test option '-' 124-- test option '-'
98RUN('echo "print(arg[1])" | lua - -h > %s', out) 125RUN('echo "print(arg[1])" | lua - -h > %s', out)
99checkout("-h\n") 126checkout("-h\n")
@@ -385,12 +412,10 @@ checkprogout("101\n13\t22\n\n")
385prepfile[[#comment in 1st line without \n at the end]] 412prepfile[[#comment in 1st line without \n at the end]]
386RUN('lua %s', prog) 413RUN('lua %s', prog)
387 414
388prepfile[[#test line number when file starts with comment line 415-- first-line comment with binary file
389debug = require"debug" 416prepfile("#comment\n" .. string.dump(load("print(3)")))
390print(debug.getinfo(1).currentline)
391]]
392RUN('lua %s > %s', prog, out) 417RUN('lua %s > %s', prog, out)
393checkprogout('3\n') 418checkout('3\n')
394 419
395-- close Lua with an open file 420-- close Lua with an open file
396prepfile(string.format([[io.output(%q); io.write('alo')]], out)) 421prepfile(string.format([[io.output(%q); io.write('alo')]], out))