Author: manjula
Date: 2005-03-18 00:04:32 -0500 (Fri, 18 Mar 2005)
New Revision: 41975
Added:
trunk/mcs/mbas/Test/rerrors/Test/LikeOperator2.vb
trunk/mcs/mbas/Test/rerrors/Test/LikeOperator3.vb
Removed:
trunk/mcs/mbas/Test/rerrors/LikeOperator2.vb
trunk/mcs/mbas/Test/rerrors/LikeOperator3.vb
trunk/mcs/mbas/Test/tests/AssignmentStatementsA.exe
trunk/mcs/mbas/Test/tests/AssignmentStatementsB.exe
trunk/mcs/mbas/Test/tests/AssignmentStatementsC.vb.log
trunk/mcs/mbas/Test/tests/AssignmentStatementsD.exe
trunk/mcs/mbas/Test/tests/AssignmentStatementsE.exe
trunk/mcs/mbas/Test/tests/AssignmentStatementsF.exe
trunk/mcs/mbas/Test/tests/AssignmentStatementsG.exe
trunk/mcs/mbas/Test/tests/AssignmentStatementsH.exe
trunk/mcs/mbas/Test/tests/AssignmentStatementsI.exe
trunk/mcs/mbas/Test/tests/BlockStatementsA.vb.log
trunk/mcs/mbas/Test/tests/ConditionalStatementsA.exe
trunk/mcs/mbas/Test/tests/ConditionalStatementsB.exe
trunk/mcs/mbas/Test/tests/ConditionalStatementsC.vb.log
trunk/mcs/mbas/Test/tests/ConditionalStatementsD.vb.log
trunk/mcs/mbas/Test/tests/ConditionalStatementsE.exe
trunk/mcs/mbas/Test/tests/ConditionalStatementsF.exe
trunk/mcs/mbas/Test/tests/ConditionalStatementsG.exe
trunk/mcs/mbas/Test/tests/ConditionalStatementsH.exe
trunk/mcs/mbas/Test/tests/ConditionalStatementsI.exe
trunk/mcs/mbas/Test/tests/ConditionalStatementsJ.exe
trunk/mcs/mbas/Test/tests/ExitStatementA.exe
trunk/mcs/mbas/Test/tests/ExitStatementA.vb.log
trunk/mcs/mbas/Test/tests/GotoStatementA.vb.log
trunk/mcs/mbas/Test/tests/InvocationStatementA.exe
trunk/mcs/mbas/Test/tests/LoopStatementsA.exe
trunk/mcs/mbas/Test/tests/LoopStatementsB.exe
trunk/mcs/mbas/Test/tests/LoopStatementsC.exe
trunk/mcs/mbas/Test/tests/LoopStatementsD.exe
trunk/mcs/mbas/Test/tests/LoopStatementsE.vb.log
trunk/mcs/mbas/Test/tests/LoopStatementsF.exe
trunk/mcs/mbas/Test/tests/LoopStatementsG.exe
trunk/mcs/mbas/Test/tests/LoopStatementsG.vb.log
trunk/mcs/mbas/Test/tests/ReturnStatementA.exe
trunk/mcs/mbas/Test/tests/StopStatementA.exe
trunk/mcs/mbas/Test/tests/StopStatementA.vb.log
trunk/mcs/mbas/Test/tests/TestResults.log
trunk/mcs/mbas/Test/tests/WithStatementA.exe
trunk/mcs/mbas/Test/tests/WithStatementB.exe
trunk/mcs/mbas/Test/tests/WithStatementB.vb.log
trunk/mcs/mbas/Test/tests/WithStatementC.vb.log
Modified:
trunk/mcs/mbas/Test/rerrors/rerrors_btest.dll.sources
Log:
Removed executable files
Deleted: trunk/mcs/mbas/Test/rerrors/LikeOperator2.vb
===================================================================
--- trunk/mcs/mbas/Test/rerrors/LikeOperator2.vb 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/rerrors/LikeOperator2.vb 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,20 +0,0 @@
-'Author:
-' V. Sudharsan ([EMAIL PROTECTED])
-'
-' (C) 2005 Novell, Inc.
-
-Option Compare text
-Imports System
-Imports Nunit.Framework
-
-<TestFixture> _
-Public Class LikeOperator2
- <Test, ExpectedException (GetType
(System.ArgumentException))> _
- Public Sub TestForException ()
- dim a as boolean
- a = "?" Like "[?"
- If a <> True Then
- Throw new System.Exception("#A1-LikeOperator:Failed")
- End If
- end sub
-End class
Deleted: trunk/mcs/mbas/Test/rerrors/LikeOperator3.vb
===================================================================
--- trunk/mcs/mbas/Test/rerrors/LikeOperator3.vb 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/rerrors/LikeOperator3.vb 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,20 +0,0 @@
-'Author:
-' V. Sudharsan ([EMAIL PROTECTED])
-'
-' (C) 2005 Novell, Inc.
-
-'Option Compare text
-Imports System
-Imports Nunit.Framework
-
-<TestFixture> _
-Public Class LikeOperator2
- <Test, ExpectedException (GetType (System.Exception))> _
- Public Sub TestForException ()
- dim a as boolean
- a = "f" Like "[Z-A]"
- If a <> True Then
- Throw new System.Exception("#A1-LikeOperator:Failed")
- End If
- end sub
-End class
Added: trunk/mcs/mbas/Test/rerrors/Test/LikeOperator2.vb
===================================================================
--- trunk/mcs/mbas/Test/rerrors/Test/LikeOperator2.vb 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/rerrors/Test/LikeOperator2.vb 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -0,0 +1,20 @@
+'Author:
+' V. Sudharsan ([EMAIL PROTECTED])
+'
+' (C) 2005 Novell, Inc.
+
+Option Compare text
+Imports System
+Imports Nunit.Framework
+
+<TestFixture> _
+Public Class LikeOperator2
+ <Test, ExpectedException (GetType
(System.ArgumentException))> _
+ Public Sub TestForException ()
+ dim a as boolean
+ a = "?" Like "[?"
+ If a <> True Then
+ Throw new System.Exception("#A1-LikeOperator:Failed")
+ End If
+ end sub
+End class
Property changes on: trunk/mcs/mbas/Test/rerrors/Test/LikeOperator2.vb
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/mcs/mbas/Test/rerrors/Test/LikeOperator3.vb
===================================================================
--- trunk/mcs/mbas/Test/rerrors/Test/LikeOperator3.vb 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/rerrors/Test/LikeOperator3.vb 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -0,0 +1,20 @@
+'Author:
+' V. Sudharsan ([EMAIL PROTECTED])
+'
+' (C) 2005 Novell, Inc.
+
+'Option Compare text
+Imports System
+Imports Nunit.Framework
+
+<TestFixture> _
+Public Class LikeOperator2
+ <Test, ExpectedException (GetType (System.Exception))> _
+ Public Sub TestForException ()
+ dim a as boolean
+ a = "f" Like "[Z-A]"
+ If a <> True Then
+ Throw new System.Exception("#A1-LikeOperator:Failed")
+ End If
+ end sub
+End class
Property changes on: trunk/mcs/mbas/Test/rerrors/Test/LikeOperator3.vb
___________________________________________________________________
Name: svn:executable
+ *
Modified: trunk/mcs/mbas/Test/rerrors/rerrors_btest.dll.sources
===================================================================
--- trunk/mcs/mbas/Test/rerrors/rerrors_btest.dll.sources 2005-03-18
04:52:31 UTC (rev 41974)
+++ trunk/mcs/mbas/Test/rerrors/rerrors_btest.dll.sources 2005-03-18
05:04:32 UTC (rev 41975)
@@ -18,3 +18,8 @@
InheritanceM.vb
Interface1.vb
InheritanceN.vb
+Variables1.vb
+Variables2.vb
+LikeOperator2.vb
+LikeOperator3.vb
+
Deleted: trunk/mcs/mbas/Test/tests/AssignmentStatementsA.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/AssignmentStatementsB.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/AssignmentStatementsC.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/AssignmentStatementsC.vb.log 2005-03-18
04:52:31 UTC (rev 41974)
+++ trunk/mcs/mbas/Test/tests/AssignmentStatementsC.vb.log 2005-03-18
05:04:32 UTC (rev 41975)
@@ -1,12 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System AssignmentStatementsC.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-Internal warning BC-0018: Cannot find any symbol writer
-AssignmentStatementsC.vb(18,15) error BC30455: Could not find any applicable
function to invoke for this argument list
-AssignmentStatementsC.vb(28,15) error BC30455: Could not find any applicable
function to invoke for this argument list
-AssignmentStatementsC.vb(33,15) error BC30455: Could not find any applicable
function to invoke for this argument list
-AssignmentStatementsC.vb(38,17) error BC30455: Could not find any applicable
function to invoke for this argument list
-Compilation failed: 4 Error(s), 1 warnings
Deleted: trunk/mcs/mbas/Test/tests/AssignmentStatementsD.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/AssignmentStatementsE.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/AssignmentStatementsF.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/AssignmentStatementsG.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/AssignmentStatementsH.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/AssignmentStatementsI.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/BlockStatementsA.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/BlockStatementsA.vb.log 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/tests/BlockStatementsA.vb.log 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,8 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System BlockStatementsA.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-BlockStatementsA.vb(34,0) error BC0140: The label 'f1' is a duplicate
-Compilation failed: 1 Error(s), 0 warnings
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsA.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsB.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsC.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/ConditionalStatementsC.vb.log 2005-03-18
04:52:31 UTC (rev 41974)
+++ trunk/mcs/mbas/Test/tests/ConditionalStatementsC.vb.log 2005-03-18
05:04:32 UTC (rev 41975)
@@ -1,9 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System ConditionalStatementsC.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-syntax error, got token `OP_GE'
-ConditionalStatementsC.vb(26,28) error BC29999: Parsing error
-Compilation failed: 1 Error(s), 0 warnings
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsD.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/ConditionalStatementsD.vb.log 2005-03-18
04:52:31 UTC (rev 41974)
+++ trunk/mcs/mbas/Test/tests/ConditionalStatementsD.vb.log 2005-03-18
05:04:32 UTC (rev 41975)
@@ -1,8 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System ConditionalStatementsD.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-ConditionalStatementsD.vb(16,0) error BC29999: Parsing error
-Compilation failed: 1 Error(s), 0 warnings
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsE.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsF.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsG.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsH.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsI.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/ConditionalStatementsJ.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/ExitStatementA.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/ExitStatementA.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/ExitStatementA.vb.log 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/tests/ExitStatementA.vb.log 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,16 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System ExitStatementA.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-Internal warning BC-0018: Cannot find any symbol writer
-ExitStatementA.vb(11,0) warning BC0162: Unreachable code detected
-Compilation succeeded: 2 warning(s)
-
-MONO_PATH="../../../class/lib/default::$MONO_PATH" mono --debug
./ExitStatementA.exe
-
-** ERROR **: Invalid IL code at IL0000 in exitstmt:fun (): IL_0000: ret
-
-
-aborting...
Deleted: trunk/mcs/mbas/Test/tests/GotoStatementA.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/GotoStatementA.vb.log 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/tests/GotoStatementA.vb.log 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,8 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System GotoStatementA.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-GotoStatementA.vb(10,0) error BC29999: 'Nothing' found without a matching
'Block'
-Compilation failed
Deleted: trunk/mcs/mbas/Test/tests/InvocationStatementA.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/LoopStatementsA.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/LoopStatementsB.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/LoopStatementsC.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/LoopStatementsD.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/LoopStatementsE.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/LoopStatementsE.vb.log 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/tests/LoopStatementsE.vb.log 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,30 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System LoopStatementsE.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-Internal warning BC-0018: Cannot find any symbol writer
-Exception: System.Exception: Expression Mono.MonoBASIC.Binary did not set its
type after Resolve
-called from: Mono.MonoBASIC.Binary
-in <0x00548> Mono.MonoBASIC.Expression:Resolve (Mono.MonoBASIC.EmitContext ec,
ResolveFlags flags)
-in <0x00012> Mono.MonoBASIC.Expression:Resolve (Mono.MonoBASIC.EmitContext ec)
-in <0x00131> Mono.MonoBASIC.Assign:DoResolve (Mono.MonoBASIC.EmitContext ec)
-in <0x0016d> Mono.MonoBASIC.Expression:Resolve (Mono.MonoBASIC.EmitContext ec,
ResolveFlags flags)
-in <0x00012> Mono.MonoBASIC.Expression:Resolve (Mono.MonoBASIC.EmitContext ec)
-in <0x0001d> Mono.MonoBASIC.StatementExpression:Resolve
(Mono.MonoBASIC.EmitContext ec)
-in <0x000eb> Mono.MonoBASIC.For:Resolve (Mono.MonoBASIC.EmitContext ec)
-in <0x00167> Mono.MonoBASIC.Block:Resolve (Mono.MonoBASIC.EmitContext ec)
-in <0x00167> Mono.MonoBASIC.Block:Resolve (Mono.MonoBASIC.EmitContext ec)
-in <0x00167> Mono.MonoBASIC.Block:Resolve (Mono.MonoBASIC.EmitContext ec)
-in <0x000cc> Mono.MonoBASIC.EmitContext:EmitTopBlock (Mono.MonoBASIC.Block
block, System.String bname, Mono.MonoBASIC.InternalParameters ip, Location loc)
-in <0x0044d> Mono.MonoBASIC.MethodData:Emit (Mono.MonoBASIC.TypeContainer
parent, Mono.MonoBASIC.Block block, System.Object kind)
-in <0x00031> Mono.MonoBASIC.Method:Emit (Mono.MonoBASIC.TypeContainer parent)
-in <0x00253> Mono.MonoBASIC.TypeContainer:Emit ()
-in <0x0030d> Mono.MonoBASIC.RootContext:EmitCode ()
-in <0x0003f> Mono.Languages.Driver:GenerateAssembly ()
-in <0x0004b> Mono.Languages.Driver:CompileAll ()
-Compilation succeeded: 1 warning(s)
-
-MONO_PATH="../../../class/lib/default::$MONO_PATH" mono --debug
./LoopStatementsE.exe
-cannot open assembly ./LoopStatementsE.exe
Deleted: trunk/mcs/mbas/Test/tests/LoopStatementsF.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/LoopStatementsG.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/LoopStatementsG.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/LoopStatementsG.vb.log 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/tests/LoopStatementsG.vb.log 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,13 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System LoopStatementsG.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-Internal warning BC-0018: Cannot find any symbol writer
-Compilation succeeded: 1 warning(s)
-
-MONO_PATH="../../../class/lib/default::$MONO_PATH" mono --debug
./LoopStatementsG.exe
-
-Unhandled Exception: System.Exception: For loop not working. Expected -1 but
got 9
-in <0x000d5> Test:Main ()
Deleted: trunk/mcs/mbas/Test/tests/ReturnStatementA.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/StopStatementA.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/StopStatementA.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/StopStatementA.vb.log 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/tests/StopStatementA.vb.log 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,10 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System StopStatementA.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-syntax error, got token `IDENTIFIER'
-StopStatementA.vb(8,20) error BC29999: Unrecognized Pre-Processor statement
-StopStatementA.vb(9,17) error BC29999: Parsing error
-Compilation failed: 2 Error(s), 0 warnings
Deleted: trunk/mcs/mbas/Test/tests/TestResults.log
===================================================================
--- trunk/mcs/mbas/Test/tests/TestResults.log 2005-03-18 04:52:31 UTC (rev
41974)
+++ trunk/mcs/mbas/Test/tests/TestResults.log 2005-03-18 05:04:32 UTC (rev
41975)
@@ -1,70 +0,0 @@
-========================
-AssignmentStatementsA.vb: OK
-========================
-AssignmentStatementsB.vb: OK
-========================
-AssignmentStatementsC.vb: FAILED COMPILATION
-========================
-AssignmentStatementsD.vb: OK
-========================
-AssignmentStatementsE.vb: OK
-========================
-AssignmentStatementsF.vb: OK
-========================
-AssignmentStatementsG.vb: OK
-========================
-AssignmentStatementsH.vb: OK
-========================
-AssignmentStatementsI.vb: OK
-========================
-BlockStatementsA.vb: FAILED COMPILATION
-========================
-ConditionalStatementsA.vb: OK
-========================
-ConditionalStatementsB.vb: OK
-========================
-ConditionalStatementsC.vb: FAILED COMPILATION
-========================
-ConditionalStatementsD.vb: FAILED COMPILATION
-========================
-ConditionalStatementsE.vb: OK
-========================
-ConditionalStatementsF.vb: OK
-========================
-ConditionalStatementsG.vb: OK
-========================
-ConditionalStatementsH.vb: OK
-========================
-ConditionalStatementsI.vb: OK
-========================
-ConditionalStatementsJ.vb: OK
-========================
-ExitStatementA.vb: FAILED EXECUTION
-========================
-GotoStatementA.vb: FAILED COMPILATION
-========================
-InvocationStatementA.vb: OK
-========================
-LoopStatementsA.vb: OK
-========================
-LoopStatementsB.vb: OK
-========================
-LoopStatementsC.vb: OK
-========================
-LoopStatementsD.vb: OK
-========================
-LoopStatementsE.vb: FAILED EXECUTION
-========================
-LoopStatementsF.vb: OK
-========================
-LoopStatementsG.vb: FAILED EXECUTION
-========================
-ReturnStatementA.vb: OK
-========================
-StopStatementA.vb: FAILED COMPILATION
-========================
-WithStatementA.vb: OK
-========================
-WithStatementB.vb: FAILED EXECUTION
-========================
-WithStatementC.vb: FAILED COMPILATION
Deleted: trunk/mcs/mbas/Test/tests/WithStatementA.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/WithStatementB.exe
===================================================================
(Binary files differ)
Deleted: trunk/mcs/mbas/Test/tests/WithStatementB.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/WithStatementB.vb.log 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/tests/WithStatementB.vb.log 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,13 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System WithStatementB.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-Internal warning BC-0018: Cannot find any symbol writer
-Compilation succeeded: 1 warning(s)
-
-MONO_PATH="../../../class/lib/default::$MONO_PATH" mono --debug
./WithStatementB.exe
-
-Unhandled Exception: System.Exception: #WS1 - With Statement failed
-in <0x000c0> WithStatementB:main ()
Deleted: trunk/mcs/mbas/Test/tests/WithStatementC.vb.log
===================================================================
--- trunk/mcs/mbas/Test/tests/WithStatementC.vb.log 2005-03-18 04:52:31 UTC
(rev 41974)
+++ trunk/mcs/mbas/Test/tests/WithStatementC.vb.log 2005-03-18 05:04:32 UTC
(rev 41975)
@@ -1,9 +0,0 @@
-
-MONO_PATH="../../../class/lib/default:$MONO_PATH" mono ../../../mbas/mbas.exe
-d:NET_1_1 -d:ONLY_1_1 -debug /libpath:../../../class/lib/default
/imports:System WithStatementC.vb
-MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira
---------
-THIS IS AN ALPHA SOFTWARE.
---------
-Internal warning BC-0018: Cannot find any symbol writer
-WithStatementC.vb(16,21) error BC30132: No such label `labelA' in this scope
-Compilation failed: 1 Error(s), 1 warnings
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches