Update of /cvsroot/monetdb/MonetDB5/src/mal/Tests
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11635/Tests

Modified Files:
        tst300.stable.out 
Log Message:
Make the MAL debugger dump available for direct calls.
Terminate a debugging run with the EOD message.


Index: tst300.stable.out
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/mal/Tests/tst300.stable.out,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- tst300.stable.out   13 Dec 2006 22:20:13 -0000      1.10
+++ tst300.stable.out   16 Aug 2007 07:00:47 -0000      1.11
@@ -20,16 +20,22 @@
 #catch myNewException;
 #      printf("catched exception\n");
 #exit  myNewException;
+#end tst;
+function user.tst():void;      # 0  (tst:void)
+    raise myNewException:str  := "new exception";      # 1  
(myNewException:str)<-(_2:str)
+    io.printf("should not come here\n");       # 2 IOprint_str 
(_3:void)<-(_4:str)
+#exception block;      # 3  (_5:str)
+catch myNewException:str ;     # 4  (myNewException:str) jump 6
+    io.printf("catched exception\n");  # 5 IOprint_str (_6:void)<-(_7:str)
+exit myNewException:str ;      # 6  (myNewException:str)
+end tst;       # 7  
+#
+#tst();
 #
 function user.main():void;     # 0  (main:void)
 # Exception identifiers can be introduced at any place         # 1  (_1:str)
-    raise myNewException:str  := "new exception";      # 2  
(myNewException:str)<-(_3:str)
-    io.printf("should not come here\n");       # 3 IOprint_str 
(_4:void)<-(_5:str)
-#exception block;      # 4  (_6:str)
-catch myNewException:str ;     # 5  (myNewException:str) jump 7
-    io.printf("catched exception\n");  # 6 IOprint_str (_7:void)<-(_8:str)
-exit myNewException:str ;      # 7  (myNewException:str)
-end main;      # 8  
+    user.tst();        # 2  (_2:void)
+end main;      # 3  
 catched exception
 
 # 08:01:13 >  


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to