summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/realtimeGC/main.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/realtimeGC/main.nim b/tests/realtimeGC/main.nim
index 21e90d545..98cebdd30 100644
--- a/tests/realtimeGC/main.nim
+++ b/tests/realtimeGC/main.nim
@@ -9,11 +9,11 @@ import os
 const RUNTIME = 35 * 60 # 35 minutes
 
 when defined(windows):
-  const dllname = "./server.dll"
+  const dllname = "./shared.dll"
 elif defined(macosx):
-  const dllname = "./libserver.dylib"
+  const dllname = "./libshared.dylib"
 else:
-  const dllname = "./libserver.so"
+  const dllname = "./libshared.so"
 
 proc status() {.importc: "status", dynlib: dllname.}
 proc count() {.importc: "count", dynlib: dllname.}