summaryrefslogtreecommitdiff
path: root/tests/src/baseservices/threading/regressions/beta1/347011.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/baseservices/threading/regressions/beta1/347011.cs')
-rw-r--r--tests/src/baseservices/threading/regressions/beta1/347011.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/src/baseservices/threading/regressions/beta1/347011.cs b/tests/src/baseservices/threading/regressions/beta1/347011.cs
new file mode 100644
index 0000000000..fa0377b6aa
--- /dev/null
+++ b/tests/src/baseservices/threading/regressions/beta1/347011.cs
@@ -0,0 +1,35 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+using System.Threading;
+
+public class TimerTest
+{
+ public static void Target(Object foo){}
+
+ public static int Main()
+ {
+ int retVal = 0;
+ Timer timer = new Timer(new TimerCallback(Target),new Object(), 1000,1000);
+ timer.Dispose();
+ try
+ {
+ timer.Change(5000,5000);
+ retVal = -5;
+ }
+ catch(ObjectDisposedException)
+ {
+ Console.WriteLine("Caught Expected exception");
+ retVal = 100;
+ }
+ catch(Exception ex)
+ {
+ Console.WriteLine("Unexpected exception: " + ex.ToString());
+ retVal = -1;
+ }
+ Console.WriteLine(100 == retVal ? "Test Passed":"Test Failed");
+ return retVal;
+ }
+} \ No newline at end of file