pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2001-02-19
2001-02-19 09:11:29 by Mirar (Pontus Hagland) <pike@sort.mirar.org>
f9c20238094ca0aa8a957dddf331ba0bd2e428a6 (
10
lines) (+
9
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
added Filesystem.System test to testsuite
Rev: src/testsuite.in:1.385
1:
-
test_true([["$Id: testsuite.in,v 1.
384
2001/02/
10
02
:
18
:
49
mast
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
385
2001/02/
19
09
:
11
:
29
mirar
Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
6533:
// your Pike until you've got Calendar to compile again. /Mirar (int)(Calendar.Stardate.Tick("julian",2500000)->tic())]],-190335)
+
// - Filesystem
+
+
test_true([[
+
object fs=Filesystem.System();
+
return 1;
+
]])
+
// - LR test_program([[ object(LR.parser) p=LR.Grammar_parser.make_parser("foo : bar;foo : foo bar;bar : \"a\";"); int pos; array(string) data="aaaaaaaaa"/""; string scan() { if (pos < sizeof(data)) return(data[pos++]); else return ""; } int a() { return(p->parse(scan) == "a"); }]])