pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2001-09-11
2001-09-11 05:59:46 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
997b7357c6a040a252606777c32d1b55b8fb7ff3 (
13
lines) (+
12
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
added a test that previously caused a memory leak
Rev: src/testsuite.in:1.451
1:
-
test_true([["$Id: testsuite.in,v 1.
450
2001/09/
05
03
:
54
:
00
hubbe Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
451
2001/09/
11
05:
59
:
46
hubbe Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
4480:
array a=({k+17,k+16,k+13,k+14,k+12,k,k+9}); return sort(a)[0]==k && sort(a)[-1]==k+17]],1)
+
test_do([[
+
// This is a memleak test
+
rm("testsuite_test.pike");
+
Stdio.write_file("testsuite_test.pike",
+
"constant Q=10000000000000000;\n"
+
"int main() {}\n");
+
Process.system(RUNPIKE +" testsuite_test.pike");
+
rm("testsuite_test.pike");
+
]])
+
// test the corresponding integer operations first test_any([[int k=100; int j=k+1; array a=({k+17,k+16,k+13,k+14,k+12,k,k+9});