aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compat53/tests/test-bit32.lua
diff options
context:
space:
mode:
authorGravatar Andrew D. France 2025-07-23 02:20:40 -0500
committerGravatar Andrew D. France 2025-07-23 02:20:40 -0500
commitb034e12d7e4e2433809f7aada72e57f712f12a3d (patch)
treeb6964125ac57ba77f8696916099a71793f32b2a2 /lib/compat53/tests/test-bit32.lua
parent- The premake5.lua file has been updated to include the LUA_COMPAT_BITLIB com... (diff)
Removing the dependencies from lib/
Diffstat (limited to '')
-rwxr-xr-xlib/compat53/tests/test-bit32.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/compat53/tests/test-bit32.lua b/lib/compat53/tests/test-bit32.lua
deleted file mode 100755
index a408b7d..0000000
--- a/lib/compat53/tests/test-bit32.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env lua
-
-local bit32 = require("bit32")
-
-
-assert(bit32.bnot(0) == 2^32-1)
-assert(bit32.bnot(-1) == 0)
-assert(bit32.band(1, 3, 5) == 1)
-assert(bit32.bor(1, 3, 5) == 7)
-