pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
1998-02-11
1998-02-11 00:56:20 by Henrik Grubbström (Grubba) <grubba@grubba.org>
3b9009183778305f9bae2c5887c0a40a6b41efb2 (
8
lines) (+
7
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added one more test.
Rev: src/testsuite.in:1.72
1:
-
test_true([["$Id: testsuite.in,v 1.
71
1998/02/
10
14
:
38
:
06
grubba Exp $"]])
+
test_true([["$Id: testsuite.in,v 1.
72
1998/02/
11
00
:
56
:
20
grubba Exp $"]])
test_eq(1e1,10.0) test_eq(1E1,10.0) test_eq(1e+1,10.0)
32:
test_eval_error([[return column(({0}),"foo");]]) test_any([[
+
class A { constant a=0; int foo() { return a; } };
+
class B { inherit A; constant a=1; };
+
return B()->foo(); ]], 1)
+
+
test_any([[
class p1 { int foo() { return 1; }}; class p2 { int foo() { return 3; }}; class c1 { inherit p1; inherit p2; int foo() { return p1::foo()+p2::foo(); }};