summaryrefslogtreecommitdiff
path: root/tests/src/GC/Features/SustainedLowLatency/scenario.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/GC/Features/SustainedLowLatency/scenario.cs')
-rw-r--r--tests/src/GC/Features/SustainedLowLatency/scenario.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/src/GC/Features/SustainedLowLatency/scenario.cs b/tests/src/GC/Features/SustainedLowLatency/scenario.cs
index 9725b97a6f..190e29c78b 100644
--- a/tests/src/GC/Features/SustainedLowLatency/scenario.cs
+++ b/tests/src/GC/Features/SustainedLowLatency/scenario.cs
@@ -65,7 +65,7 @@ class request
pin.Free();
}
- static public void Main(String[] args)
+ static public int Main(String[] args)
{
int n_requests = 600;
int allocation_volume = 100000; // 1 mil
@@ -109,6 +109,8 @@ class request
total_elapsed_ms = stopwatch.Elapsed.TotalMilliseconds;
}
+
+ return 100;
}
}