diff options
| -rw-r--r-- | makefile | 2 | ||||
| -rw-r--r-- | tests/modules/process/test.lua | 9 |
2 files changed, 1 insertions, 10 deletions
@@ -82,7 +82,7 @@ uninstall: @echo ok! test: - @xmake lua tests/test.lua $(name) + @xmake lua --backtrace tests/test.lua $(name) @echo ok! .PHONY: tip build install uninstall diff --git a/tests/modules/process/test.lua b/tests/modules/process/test.lua index aec56cfc6..64c975b29 100644 --- a/tests/modules/process/test.lua +++ b/tests/modules/process/test.lua @@ -49,13 +49,4 @@ function main() end } assert(ok == nil) - - ok = try - { - function () - process.open("thismustnotbeaprogramname") - return true - end - } - assert(ok == nil) end |
