Changeset: 3a52819b4635 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=3a52819b4635
Modified Files:
        MonetDB5/tests/gdkTests/Tests/casts.mal
Branch: Oct2010
Log Message:

removed stale "l" suffix from test script:
While apparently ignored so far, the "l" suffix in "2l" triggers a
!SyntaxException:parseError:zk:= -2147483647 - 2l;
!SyntaxException:parseError:                   ^";" expected
since Martin's latest MAL parser changes
(cf., http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=42d0637cfc71).

I honestly do not know what the "l" suffix is/was supposed to mean
--- lng & dbl literals are specified by a "LL" suffix ---;
hence, I simply removed it to get this test working, again.


diffs (12 lines):

diff -r 5184967f30fb -r 3a52819b4635 MonetDB5/tests/gdkTests/Tests/casts.mal
--- a/MonetDB5/tests/gdkTests/Tests/casts.mal   Fri Nov 26 21:34:55 2010 +0100
+++ b/MonetDB5/tests/gdkTests/Tests/casts.mal   Sun Nov 28 11:28:54 2010 +0100
@@ -572,7 +572,7 @@
 d:= calc.dbl(zn);
 io.print(d);
 io.printf("# should this produce nil (overflow)?\n");
-zk:= -2147483647 - 2l;
+zk:= -2147483647 - 2;
 d:= calc.dbl(zk);
 io.print(d);
 
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to