summary refs log tree commit diff stats
path: root/tests/tester.nim
diff options
context:
space:
mode:
authorClay Sweetser <clay.sweetser@gmail.com>2013-12-12 15:04:28 -0500
committerClay Sweetser <clay.sweetser@gmail.com>2013-12-12 15:04:28 -0500
commit5b3bc2872137e4627d98c448e0d5821ee580d8db (patch)
tree2bf7c7615e54dd64c78e4f23e0c7c4977cd916ef /tests/tester.nim
parentefc0d8557a82faa77b10b765460245fa310ff809 (diff)
downloadNim-5b3bc2872137e4627d98c448e0d5821ee580d8db.tar.gz
Commented out CAAS testing code.
Diffstat (limited to 'tests/tester.nim')
-rw-r--r--tests/tester.nim12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/tester.nim b/tests/tester.nim
index fe21fc9ee..0e125b1bb 100644
--- a/tests/tester.nim
+++ b/tests/tester.nim
@@ -11,7 +11,7 @@
 
 import
   parseutils, strutils, pegs, os, osproc, streams, parsecfg, browsers, json,
-  marshal, cgi, parseopt, caasdriver
+  marshal, cgi, parseopt #, caas
 
 const
   cmdTemplate = r"nimrod cc --hints:on $# $#"
@@ -364,10 +364,10 @@ proc outputJSON(reject, compile, run: TResults) =
   var s = pretty(doc)
   writeFile(jsonFile, s)
 
-proc runCaasTests(r: var TResults) =
-  for test, output, status, mode in caasTestsRunner():
-    r.addResult(test, "", output & "-> " & $mode,
-                if status: reSuccess else: reOutputsDiffer)
+# proc runCaasTests(r: var TResults) =
+#   for test, output, status, mode in caasTestsRunner():
+#     r.addResult(test, "", output & "-> " & $mode,
+#                 if status: reSuccess else: reOutputsDiffer)
 
 proc main() =
   os.putenv "NIMTEST_NO_COLOR", "1"
@@ -411,7 +411,7 @@ proc main() =
     writeResults(runJson, r)
   of "special":
     runSpecialTests(r, p.cmdLineRest.string)
-    runCaasTests(r)
+    # runCaasTests(r)
     writeResults(runJson, r)
   of "rodfiles":
     runRodFiles(r, p.cmdLineRest.string)