mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 06:05:58 -06:00
.autotest
This commit is contained in:
parent
9a0d174984
commit
c1a9481037
2 changed files with 2 additions and 1 deletions
|
|
@ -12,9 +12,9 @@ CONSOLE_APP_MAIN
|
|||
RDUMP(IsNull(y));
|
||||
RDUMP(IsNull(1e300));
|
||||
RDUMP(IsNull(1e-320));
|
||||
RDUMP(IsNull(DBL_MAX));
|
||||
RDUMP(IsNull(0));
|
||||
RDUMP(IsNull(log(-1)));
|
||||
|
||||
RDUMP(IsNull(1 / zero));
|
||||
|
||||
CheckLogEtalon();
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ IsNull(x) = true
|
|||
IsNull(y) = false
|
||||
IsNull(1e300) = false
|
||||
IsNull(1e-320) = false
|
||||
IsNull(DBL_MAX) = false
|
||||
IsNull(0) = false
|
||||
IsNull(log(-1)) = true
|
||||
IsNull(1 / zero) = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue