diff options
author | Joseph Poirier <jdpoirier@gmail.com> | 2015-01-06 13:02:31 -0600 |
---|---|---|
committer | Joseph Poirier <jdpoirier@gmail.com> | 2015-01-06 13:02:31 -0600 |
commit | 9be15cd3b3f769f834771b48e190a8062bd2d176 (patch) | |
tree | cffe44aa8ebda7b1c0661b6a1b93adc81e18e6be /tests | |
parent | e940e7d37b2ffcc24595e99868c40e46c57f74b9 (diff) | |
download | Nim-9be15cd3b3f769f834771b48e190a8062bd2d176.tar.gz |
fixed import object name
Diffstat (limited to 'tests')
-rw-r--r-- | tests/realtimeGC/main.nim | 6 |
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.} |