summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorArne Döring <arne.doering@gmx.net>2018-11-27 23:38:44 +0100
committerAraq <rumpf_a@web.de>2018-12-11 21:23:18 +0100
commitef44c12a3460579bd4ca17111ce942e752c5fda6 (patch)
treeeae998c61653283253dd4799f4efd528bb524435
parentfa6a9a21e04a7a4087f8758016932c91230560fa (diff)
downloadNim-ef44c12a3460579bd4ca17111ce942e752c5fda6.tar.gz
kick taint mode
-rw-r--r--.gitlab-ci.yml3
-rw-r--r--.travis.yml2
-rw-r--r--appveyor.yml4
-rw-r--r--koch.nim4
4 files changed, 5 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 70ff59136..9f536e6c9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -53,9 +53,8 @@ test-windows:
   <<: *win_set_path_def
   script:
     - call ci\deps.bat
-    - nim c --taintMode:on testament\tester
+    - nim c testament\tester
     - testament\tester.exe --pedantic all
   tags:
     - windows
     - fast
-
diff --git a/.travis.yml b/.travis.yml
index 4c3c687e2..abd115701 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -51,7 +51,7 @@ script:
   #- nimble install sdl1
   #- nimble install jester@#head -y
   #- nimble install niminst
-  - nim c --taintMode:on -d:nimCoroutines testament/tester
+  - nim c -d:nimCoroutines testament/tester
   - testament/tester --pedantic all -d:nimCoroutines
   - nim c -o:bin/nimpretty nimpretty/nimpretty.nim
   - nim c -r nimpretty/tester.nim
diff --git a/appveyor.yml b/appveyor.yml
index a60831f9d..9c8525d72 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -53,8 +53,8 @@ build_script:
 #  - nimble install opengl -y
 #  - nimble install sdl1 -y
 #  - nimble install jester@#head -y
-  - nim c --taintMode:on -d:nimCoroutines --os:genode -d:posix --compileOnly testament/tester
-  - nim c --taintMode:on -d:nimCoroutines testament/tester
+  - nim c -d:nimCoroutines --os:genode -d:posix --compileOnly testament/tester
+  - nim c -d:nimCoroutines testament/tester
 
 test_script:
   - testament\tester --pedantic all -d:nimCoroutines
diff --git a/koch.nim b/koch.nim
index bd10224b6..3f528a1b2 100644
--- a/koch.nim
+++ b/koch.nim
@@ -379,9 +379,7 @@ proc winRelease*() =
 template `|`(a, b): string = (if a.len > 0: a else: b)
 
 proc tests(args: string) =
-  # we compile the tester with taintMode:on to have a basic
-  # taint mode test :-)
-  nimexec "cc --taintMode:on --opt:speed testament/tester"
+  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"