pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2009-06-24
2009-06-24 20:23:43 by Henrik Grubbström (Grubba) <grubba@grubba.org>
76ed45e0c3a0aa4c441f3091c3414bb4c85b3de4 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Added some semi-colons.
Rev: src/testsuite.in:1.874
1:
START_MARKER
-
test_true([["$Id: testsuite.in,v 1.
873
2009/06/24
19
:
07
:
04
grubba Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
874
2009/06/24
20
:
23
:
43
grubba Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
845:
// Test that backtraces with prototypes are rendered correctly by // describe_backtrace() et al. These backtraces have caused both // "Bad offset" and "Identifier reference index out of range".
-
class A { void foo(); }
-
class B { int gazonk; inherit A; void bar() { foo(); } }
+
class A { void foo(); }
;
+
class B { int gazonk; inherit A; void bar() { foo(); } }
;
return sizeof(describe_backtrace(catch { B()->bar(); })) > 0; ]], 1)