Skip to content

Commit 18e783f

Browse files
committed
make test now fails when lua-posix is not found
1 parent bbc87a9 commit 18e783f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/runtests.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ print("[TESTING] Integration")
55

66
local success, posix = pcall(require, "posix")
77
if not success then
8-
print("[SKIP] posix module not found")
9-
os.exit(0)
8+
print("[ERROR] posix module not found")
9+
os.exit(1)
1010
end
1111

1212
function sleep(sec)

0 commit comments

Comments
 (0)