diff options
author | Simon Hafner <hafnersimon@gmail.com> | 2011-12-30 14:22:56 +0100 |
---|---|---|
committer | Simon Hafner <hafnersimon@gmail.com> | 2011-12-30 14:22:56 +0100 |
commit | cf2078aed8c0b706f2e3576914558c9530fcb832 (patch) | |
tree | 6bcce5a7b3909f219dea6e8003b4945971d60f3d | |
parent | 24917aaf1ecd1e0d443861c37d3b2e9e7673f856 (diff) | |
download | Nim-cf2078aed8c0b706f2e3576914558c9530fcb832.tar.gz |
compileSingleTest instead of direct callCompiler
-rw-r--r-- | tests/specials.nim | 2 |
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 ----------------------- |