summaryrefslogtreecommitdiff
path: root/tests/src/GC/API/WeakReference/Finalize.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/GC/API/WeakReference/Finalize.cs')
-rw-r--r--tests/src/GC/API/WeakReference/Finalize.cs12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/src/GC/API/WeakReference/Finalize.cs b/tests/src/GC/API/WeakReference/Finalize.cs
index aa541e819c..1e1a2d630c 100644
--- a/tests/src/GC/API/WeakReference/Finalize.cs
+++ b/tests/src/GC/API/WeakReference/Finalize.cs
@@ -33,7 +33,7 @@ public class Test {
}
[MethodImplAttribute(MethodImplOptions.NoInlining)]
- public void RunTest()
+ public GCHandle RunTest()
{
WeakReference weak1 = new WeakReference(dummy1);
GCHandle handle = GCHandle.Alloc(dummy1,GCHandleType.Normal); // Strong Reference
@@ -43,19 +43,25 @@ public class Test {
// ensuring that GC happens even with /debug mode
dummy1=null;
dummy2=null;
+
+ return handle;
}
}
public static int Main()
{
CreateObj temp = new CreateObj();
- temp.RunTest();
+ GCHandle handle = temp.RunTest();
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
- if (Dummy.visited)
+ bool success = Dummy.visited;
+
+ handle.Free();
+
+ if (success)
{
Console.WriteLine("Test for WeakReference.Finalize() passed!");
return 100;