From cf2078aed8c0b706f2e3576914558c9530fcb832 Mon Sep 17 00:00:00 2001 From: Simon Hafner Date: Fri, 30 Dec 2011 14:22:56 +0100 Subject: [PATCH] compileSingleTest instead of direct callCompiler --- tests/specials.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/specials.nim b/tests/specials.nim index 3da5b20740..ea3e58fbf1 100644 --- a/tests/specials.nim +++ b/tests/specials.nim @@ -131,7 +131,7 @@ proc rejectThreadTests(r: var TResults, options: string) = # ------------------------- IO tests ----------------------------------- proc runIOTests(r: var TResults, options: string) = - discard callCompiler(r"nimrod cc --hints:on $# $#", "tests/system/helpers/readall_echo", options) + compileSingleTest(r, "tests/system/helpers/readall_echo.nim", options) runSingleTest(r, "tests/system/io", options) # ------------------------- register special tests here -----------------------