summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSimon Hafner <hafnersimon@gmail.com>2011-12-30 14:22:56 +0100
committerSimon Hafner <hafnersimon@gmail.com>2011-12-30 14:22:56 +0100
commitcf2078aed8c0b706f2e3576914558c9530fcb832 (patch)
tree6bcce5a7b3909f219dea6e8003b4945971d60f3d
parent24917aaf1ecd1e0d443861c37d3b2e9e7673f856 (diff)
downloadNim-cf2078aed8c0b706f2e3576914558c9530fcb832.tar.gz
compileSingleTest instead of direct callCompiler
-rw-r--r--tests/specials.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/specials.nim b/tests/specials.nim
index 3da5b2074..ea3e58fbf 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 -----------------------