summary refs log tree commit diff stats
path: root/tests/tester.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tester.nim')
-rwxr-xr-xtests/tester.nim9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/tester.nim b/tests/tester.nim
index 84d399a1d..f1a001a5a 100755
--- a/tests/tester.nim
+++ b/tests/tester.nim
@@ -23,7 +23,7 @@
 ## Nimrod shall produce.
 
 import
-  strutils, pegs, os, osproc, streams
+  strutils, pegs, os, osproc, streams, parsecsv
 
 const
   cmdTemplate = r"nimrod cc --hints:on $options $filename"
@@ -169,8 +169,11 @@ proc main(options: string) =
     inc(total)
   Echo("[Tester] $#/$# tests passed\n" % [$passed, $total])
 
-
-
+proc reject(options: string) =  
+  ## handle all the tests that the compiler should reject
+  
+proc accept(options: string) = 
+  
 
 
 var