Skip to content
Snippets Groups Projects
Commit 84e8acdb authored by Roman Tsisyk's avatar Roman Tsisyk
Browse files

lua: remove unsupported tonumber64() test cases

Follow up 15a9af26
parent 3a13be1d
No related branches found
No related tags found
No related merge requests found
......@@ -704,10 +704,6 @@ tonumber64(ffi.new('int', 10))
---
- 10
...
tonumber64(ffi.new('long ', 10))
---
- 10
...
tonumber64(ffi.new('int8_t', 10))
---
- 10
......@@ -793,10 +789,6 @@ tonumber64(ffi.new('int', 10), 2)
---
- error: 'bad argument #1 to ''?'' (string expected)'
...
tonumber64(ffi.new('long ', 10), 2)
---
- error: 'bad argument #1 to ''?'' (string expected)'
...
tonumber64(ffi.new('int8_t', 10), 2)
---
- error: 'bad argument #1 to ''?'' (string expected)'
......
......@@ -190,7 +190,6 @@ tonumber64(-100LL, 10)
tonumber64(ffi.new('char', 10))
tonumber64(ffi.new('short', 10))
tonumber64(ffi.new('int', 10))
tonumber64(ffi.new('long ', 10))
tonumber64(ffi.new('int8_t', 10))
tonumber64(ffi.new('int16_t', 10))
tonumber64(ffi.new('int32_t', 10))
......@@ -214,7 +213,6 @@ tonumber64(100ULL, 2)
tonumber64(ffi.new('char', 10), 2)
tonumber64(ffi.new('short', 10), 2)
tonumber64(ffi.new('int', 10), 2)
tonumber64(ffi.new('long ', 10), 2)
tonumber64(ffi.new('int8_t', 10), 2)
tonumber64(ffi.new('int16_t', 10), 2)
tonumber64(ffi.new('int32_t', 10), 2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment