aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGanesh Viswanathan <dev@genotrance.com>2020-04-29 14:38:35 -0500
committerGanesh Viswanathan <dev@genotrance.com>2020-04-29 14:38:35 -0500
commit2278f0e49d4da012370bb8e907640b9d89ae54fa (patch)
tree28b4d7af64304c42069b7b3178daa7a2d2cc7841 /tests
parent0098947a8161f4d832bffae34ac7a0b0a5341312 (diff)
downloadnimterop-2278f0e49d4da012370bb8e907640b9d89ae54fa.tar.gz
nimterop-2278f0e49d4da012370bb8e907640b9d89ae54fa.zip
Add -f:ast1, lesser debug output
Diffstat (limited to 'tests')
-rw-r--r--tests/lzma.nim1
-rw-r--r--tests/tast2.nim1
-rw-r--r--tests/tmath.nim1
-rw-r--r--tests/tnimterop_c.nim1
-rw-r--r--tests/tnimterop_cpp.nim1
-rw-r--r--tests/tpcre.nim1
-rw-r--r--tests/zlib.nim3
7 files changed, 0 insertions, 9 deletions
diff --git a/tests/lzma.nim b/tests/lzma.nim
index 1cc6aa0..f30b974 100644
--- a/tests/lzma.nim
+++ b/tests/lzma.nim
@@ -7,7 +7,6 @@ const
flags = "--prefix=___,__,_ --suffix=__,_"
static:
- cDebug()
cSkipSymbol(@[
"PRIX8", "PRIX16", "PRIX32",
"PRIXLEAST8", "PRIXLEAST16", "PRIXLEAST32",
diff --git a/tests/tast2.nim b/tests/tast2.nim
index 4cfbeac..273d3e3 100644
--- a/tests/tast2.nim
+++ b/tests/tast2.nim
@@ -7,7 +7,6 @@ static:
# the VM does not support it
when (NimMajor, NimMinor, NimPatch) < (1, 0, 0):
cSkipSymbol @["CASTEXPR"]
- cDebug()
const
path = currentSourcePath.parentDir() / "include" / "tast2.h"
diff --git a/tests/tmath.nim b/tests/tmath.nim
index 6c7999a..8f947b2 100644
--- a/tests/tmath.nim
+++ b/tests/tmath.nim
@@ -19,7 +19,6 @@ static:
cSkipSymbol @["math_errhandling", "FP_ILOGB0", "FP_ILOGBNAN"]
else:
cSkipSymbol @["math_errhandling"]
- cDebug()
cDisableCaching()
cAddStdDir()
diff --git a/tests/tnimterop_c.nim b/tests/tnimterop_c.nim
index 8428489..20c1678 100644
--- a/tests/tnimterop_c.nim
+++ b/tests/tnimterop_c.nim
@@ -3,7 +3,6 @@ import nimterop/cimport
import nimterop/paths
static:
- cDebug()
cDisableCaching()
cAddSearchDir testsIncludeDir()
diff --git a/tests/tnimterop_cpp.nim b/tests/tnimterop_cpp.nim
index 14c8c8f..3f44e86 100644
--- a/tests/tnimterop_cpp.nim
+++ b/tests/tnimterop_cpp.nim
@@ -3,7 +3,6 @@ import nimterop/cimport
import nimterop/paths
static:
- cDebug()
cDisableCaching()
cAddSearchDir testsIncludeDir()
diff --git a/tests/tpcre.nim b/tests/tpcre.nim
index 4a426c4..51530c1 100644
--- a/tests/tpcre.nim
+++ b/tests/tpcre.nim
@@ -9,7 +9,6 @@ const
static:
if not pcreH.fileExists():
downloadUrl("https://github.com/svn2github/pcre/raw/master/pcre.h.in", baseDir)
- cDebug()
cDisableCaching()
const
diff --git a/tests/zlib.nim b/tests/zlib.nim
index 09a6df2..febc6b1 100644
--- a/tests/zlib.nim
+++ b/tests/zlib.nim
@@ -5,9 +5,6 @@ import nimterop/[build, cimport]
const
baseDir = getProjectCacheDir("nimterop" / "tests" / "zlib")
-static:
- cDebug()
-
proc zlibPreBuild(outdir, path: string) =
let
mf = outdir / "Makefile"