summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2019-02-08 20:01:20 +0100
committerAndreas Rumpf <rumpf_a@web.de>2019-02-08 20:01:20 +0100
commitc751c914fc1306b18209175a8c223cf39b90f0a0 (patch)
treec6d79b9c86fc5c1ab11baf249062ac484848537e /koch.nim
parent444f2231c9b48c34f9bec2ce6cfa3de5ae2560b1 (diff)
downloadNim-c751c914fc1306b18209175a8c223cf39b90f0a0.tar.gz
koch and testament improvement; make testing command easier to get right
Diffstat (limited to 'koch.nim')
-rw-r--r--koch.nim5
1 files changed, 0 insertions, 5 deletions
diff --git a/koch.nim b/koch.nim
index 9c73afe2b..c91f3d6a6 100644
--- a/koch.nim
+++ b/koch.nim
@@ -412,13 +412,8 @@ template `|`(a, b): string = (if a.len > 0: a else: b)
 
 proc tests(args: string) =
   nimexec "cc --opt:speed testament/tester"
-  # Since tests take a long time (on my machine), and we want to defy Murhpys
-  # law - lets make sure the compiler really is freshly compiled!
-  nimexec "c --lib:lib -d:release --opt:speed compiler/nim.nim"
   let tester = quoteShell(getCurrentDir() / "testament/tester".exe)
   let success = tryExec tester & " " & (args|"all")
-  if not existsEnv("TRAVIS") and not existsEnv("APPVEYOR"):
-    exec tester & " html"
   if not success:
     quit("tests failed", QuitFailure)