pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2003-02-26
2003-02-26 07:35:19 by Mirar (Pontus Hagland) <pike@sort.mirar.org>
6f3577c4a0288ba382b320499d428a7670f0689a (
13
lines) (+
12
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
added some float parsing bug tests
Rev: src/testsuite.in:1.608
1:
-
test_true([["$Id: testsuite.in,v 1.
607
2003/02/
25
15
:
52
:
39
marcus
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
608
2003/02/
26
07
:
35
:
19
mirar
Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
39:
test_eq(16, 0b10000); test_eq(-16, -0b10000);
+
test_true(1e-10000<=1e-1000)
+
test_true(1e-1000<=1e-100)
+
test_true(1e-100<=1e-10)
+
test_true(1e-10<=1e-1)
+
test_true(1e-1<=1e1)
+
test_true(1e1<=1e10)
+
test_true(1e10<=1e100)
+
test_true(1e100<=1e1000)
+
test_true(1e1000<=1e10000)
+
test_do([[ // bug 2677 int x;