mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
tests: Expand conformance/basic with more arith checks
Check various specials that we can't optimize and division by large power of two.
This commit is contained in:
parent
434c8f2c42
commit
fb56d8b0ec
1 changed files with 11 additions and 2 deletions
|
@ -92,6 +92,15 @@ assert((function() local a = 1 a = a - 2 return a end)() == -1)
|
|||
assert((function() local a = 1 a = a * 2 return a end)() == 2)
|
||||
assert((function() local a = 1 a = a / 2 return a end)() == 0.5)
|
||||
|
||||
-- binary ops with fp specials, neg zero, large constants
|
||||
-- argument is passed into anonymous function to prevent constant folding
|
||||
assert((function(a) return tostring(a + 0) end)(-0) == "0")
|
||||
assert((function(a) return tostring(a - 0) end)(-0) == "-0")
|
||||
assert((function(a) return tostring(a - a) end)(1 / 0) == "nan")
|
||||
assert((function(a) return tostring(a * 0) end)(0 / 0) == "nan")
|
||||
assert((function(a) return tostring(a / (2^1000)) end)(2^1000) == "1")
|
||||
assert((function(a) return tostring(a / (2^-1000)) end)(2^-1000) == "1")
|
||||
|
||||
-- floor division should always round towards -Infinity
|
||||
assert((function() local a = 1 a = a // 2 return a end)() == 0)
|
||||
assert((function() local a = 3 a = a // 2 return a end)() == 1)
|
||||
|
|
Loading…
Add table
Reference in a new issue