pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2003-11-11
2003-11-11 19:30:25 by Martin Stjernholm <mast@lysator.liu.se>
0460d4cb68d8347432de88e1a26e69f46d3a68f2 (
13
lines) (+
12
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
A test for "looks-like" style type compatibility.
Rev: src/testsuite.in:1.691
1:
-
test_true([["$Id: testsuite.in,v 1.
690
2003/11/
10
01
:
24
:
33
mast Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
691
2003/11/
11
19
:
30
:
25
mast Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
2604:
return sizeof( Program.all_inherits(D) - ({A,B,C}) ); ]],0)
+
test_any_equal([[
+
class A {
+
class C {}
+
};
+
class B {
+
class C {}
+
};
+
return ({A <= B, A >= B});
+
]], ({1, 1}))
+
test_tests([[ int errors;