We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4c0a67 commit b39c4bcCopy full SHA for b39c4bc
1 file changed
test.lua
@@ -6,6 +6,11 @@
6
-- cleanly if all of them passed; if any failed, reports the failed tests
7
-- on stdout and then raises an error.
8
9
+if arg and arg[1] == "DISABLE_FREXP" then
10
+ table.remove(arg, 1)
11
+ math.frexp = nil
12
+end
13
+
14
local ok,test = pcall(require, "vstruct.test.common")
15
16
-- maybe we aren't installed, and just need to deduce a custom package.path
@@ -33,6 +38,7 @@ require "vstruct.test.compat1x"
33
38
require "vstruct.test.fp-bigendian"
34
39
require "vstruct.test.fp-littleendian"
35
40
require "vstruct.test.error"
41
+require "vstruct.test.frexp"
36
42
require "vstruct.test.regression"
37
43
44
if arg and #arg > 0 then
0 commit comments