pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2010-02-09
2010-02-09 12:30:25 by Henrik Grubbström (Grubba) <grubba@grubba.org>
479afe5c7013bc3aa60b74d29c6ae74f88f87432 (
28
lines) (+
27
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Test and fix for [bug
5273 (#5273)
].
Rev: src/object.c:1.305
Rev: src/testsuite.in:1.890
1:
START_MARKER
-
test_true([["$Id: testsuite.in,v 1.
889
2010/02/
04
17
:
45
:
00
grubba Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
890
2010/02/
09
12
:
30
:
24
grubba Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
2856:
return 0; ]], 0)
+
test_any([[
+
// Test eval_low() on seemingly constant expressions, that
+
// attempt to access variables in the fake object. [Bug 5273]
+
// An old pike (with RTL debug) will fail with the fatal
+
// "Invalid type 33896 in svalue at 891e510."
+
// during compilation.
+
+
class Test
+
{
+
protected object foo;
+
+
mixed `-> (mixed what)
+
{
+
return foo;
+
}
+
+
int bar ()
+
{
+
return (this_object()->gazonk == "foo") ? 1 : 0;
+
}
+
};
+
+
return Test()->bar;
+
]], 0)
+
test_any([[string gurk="bozo"; string b(int x) { return (x?b(x-1)+gurk:""); }; return b(5)]],[["bozo"*5]]) dnl this should really work...