diff options
Diffstat (limited to 'test/modules/textadept/run')
-rw-r--r-- | test/modules/textadept/run/build.lua | 2 | ||||
-rw-r--r-- | test/modules/textadept/run/compile.lua | 2 | ||||
-rw-r--r-- | test/modules/textadept/run/run.lua | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/test/modules/textadept/run/build.lua b/test/modules/textadept/run/build.lua new file mode 100644 index 00000000..dd288778 --- /dev/null +++ b/test/modules/textadept/run/build.lua @@ -0,0 +1,2 @@ +print('read "' .. io.read() .. '"') +io.read() diff --git a/test/modules/textadept/run/compile.lua b/test/modules/textadept/run/compile.lua new file mode 100644 index 00000000..0645da72 --- /dev/null +++ b/test/modules/textadept/run/compile.lua @@ -0,0 +1,2 @@ +-- Missing 'end' +function foo() diff --git a/test/modules/textadept/run/run.lua b/test/modules/textadept/run/run.lua new file mode 100644 index 00000000..a61508e9 --- /dev/null +++ b/test/modules/textadept/run/run.lua @@ -0,0 +1,2 @@ +print('lua: run.lua:1: warning: foo') +foo() |