Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2002-10-10 04:30:08 +0400
committerMartin Baulig <martin@novell.com>2002-10-10 04:30:08 +0400
commit16d0b059fe4890d447b379c419b1f190a465ebbe (patch)
treef98a011cfe9bf8f7143eb7f134c485cd5f85e141 /mcs
parent09c830d6b89a553210b0e692a56ce5046093ab46 (diff)
2002-10-10 Martin Baulig <martin@gnome.org>
* verify-1.cs: Added testcase from bug #31470. svn path=/trunk/mcs/; revision=8121
Diffstat (limited to 'mcs')
-rwxr-xr-xmcs/tests/ChangeLog4
-rw-r--r--mcs/tests/README.tests4
-rw-r--r--mcs/tests/verify-1.cs7
3 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/ChangeLog b/mcs/tests/ChangeLog
index 044a8403b84..7f16e8e18c9 100755
--- a/mcs/tests/ChangeLog
+++ b/mcs/tests/ChangeLog
@@ -1,5 +1,9 @@
2002-10-10 Martin Baulig <martin@gnome.org>
+ * verify-1.cs: Added testcase from bug #31470.
+
+2002-10-10 Martin Baulig <martin@gnome.org>
+
* verify-5.cs: Added testcase from bug #31541.
2002-10-06 Martin Baulig <martin@gnome.org>
diff --git a/mcs/tests/README.tests b/mcs/tests/README.tests
index ec697b1c4e9..c5f083d49ae 100644
--- a/mcs/tests/README.tests
+++ b/mcs/tests/README.tests
@@ -53,6 +53,10 @@ Test cases listed by Category:
test-165.cs
+* Labels and goto
+
+ verify-5.cs
+
Test cases listed by Number:
============================
diff --git a/mcs/tests/verify-1.cs b/mcs/tests/verify-1.cs
index 8c4a840918c..3d167030d66 100644
--- a/mcs/tests/verify-1.cs
+++ b/mcs/tests/verify-1.cs
@@ -33,6 +33,13 @@ class T {
stuff_finally ();
}
}
+ void stuff4 () {
+ try {
+ throw new Exception();
+ } catch {
+ throw;
+ }
+ }
void stuff_finally () {
}
static void Main() {