diff --git a/tests/realtimeGC/main.c b/tests/realtimeGC/main.c index a7ac19dda0..bbe80b23d0 100644 --- a/tests/realtimeGC/main.c +++ b/tests/realtimeGC/main.c @@ -10,7 +10,7 @@ #include #include -#define RUNTIME (35*60) +#define RUNTIME (15*60) typedef void (*pFunc)(void); @@ -46,11 +46,11 @@ int main(int argc, char* argv[]) while (accumTime < runTime) { for (i = 0; i < 10; i++) count(); - printf("1. sleeping...\n"); + /* printf("1. sleeping...\n"); */ sleep(1); for (i = 0; i < 10; i++) status(); - printf("2. sleeping...\n"); + /* printf("2. sleeping...\n"); */ sleep(1); occupiedMem(); accumTime = time((time_t*)0) - startTime; diff --git a/tests/realtimeGC/main.nim b/tests/realtimeGC/main.nim index 5496cd9990..d2d404271b 100644 --- a/tests/realtimeGC/main.nim +++ b/tests/realtimeGC/main.nim @@ -6,7 +6,7 @@ discard """ import times import os -const RUNTIME = 35 * 60 # 35 minutes +const RUNTIME = 15 * 60 # 15 minutes when defined(windows): const dllname = "./shared.dll" diff --git a/tests/realtimeGC/shared.nim b/tests/realtimeGC/shared.nim index 345051bb5c..c8a70e1ee9 100644 --- a/tests/realtimeGC/shared.nim +++ b/tests/realtimeGC/shared.nim @@ -45,17 +45,17 @@ proc status() {.exportc: "status", dynlib.} = var a = getComm1Status() var b = getComm2Status() var str2: string = "$1 COM1: $2 COM2: $3" % [ptt_status, a, b] - #echo(str1) - #echo(str2) + # echo(str1) + # echo(str2) proc count() {.exportc: "count", dynlib.} = var temp: uint64 for i in 0..100_000: temp += 1 gCounter += 1 - #echo("gCounter: ", gCounter) + # echo("gCounter: ", gCounter) proc occupiedMem() {.exportc: "occupiedMem", dynlib.} = - #echo("Occupied Memmory: ", getOccupiedMem()) + echo("Occupied Memmory: ", getOccupiedMem()) discard