Skip to content
Snippets Groups Projects
Commit c7a5edb8 authored by Fredrik Noring's avatar Fredrik Noring
Browse files

Table changed to ADT.Table.

Rev: src/testsuite.in:1.82
parent 0c46a6d5
No related branches found
No related tags found
No related merge requests found
test_true([["$Id: testsuite.in,v 1.81 1998/03/25 04:39:20 hubbe Exp $"]])
test_true([["$Id: testsuite.in,v 1.82 1998/03/25 14:25:09 noring Exp $"]])
test_eq(1e1,10.0)
test_eq(1E1,10.0)
test_eq(1e+1,10.0)
......@@ -1918,7 +1918,6 @@ test_true(LR.Grammar_parser)
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"); }]])
// - Table.pmod
dnl test_true(Table.table)
dnl test_true(Table.ASCII)
dnl test_true(Table.table( ({ ({ "a", "b", 42 }), ({ "c", "b", 41 }), ({ "a", "a", 76 }) }), ({ "X", "Y", "z" }))->select("x", 2)->sum("Z")->distinct(0)->rsort("X")->rename(0, "fOo")->sort("foO")->cast("array"), ({ ({ "a", 118 }), ({ "c", 41 }) }))
dnl test_true(ADT.Table.table)
dnl test_true(ADT.Table.ASCII)
dnl test_true(ADT.Table.table( ({ ({ "a", "b", 42 }), ({ "c", "b", 41 }), ({ "a", "a", 76 }) }), ({ "X", "Y", "z" }))->select("x", 2)->sum("Z")->distinct(0)->rsort("X")->rename(0, "fOo")->sort("foO")->cast("array"), ({ ({ "a", 118 }), ({ "c", 41 }) }))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment