summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2020-02-12 01:21:32 -0800
committerGitHub <noreply@github.com>2020-02-12 10:21:32 +0100
commit90491ea0a98aaca198bebf3ce99a1f86559f18ec (patch)
treecdf5f4ee6a61990e4e71e67d4321131b7d172c07
parentc446c0f57af03e0be3a5b39be48d14676e7deebe (diff)
downloadNim-90491ea0a98aaca198bebf3ce99a1f86559f18ec.tar.gz
remove dead code test_nimhcr_integration.(bat,sh) (#13388)
* enable test for osx: import tests/dll/nimhcr_integration

* re-disable osx test
-rw-r--r--tests/dll/test_nimhcr_integration.bat10
-rwxr-xr-xtests/dll/test_nimhcr_integration.sh17
2 files changed, 0 insertions, 27 deletions
diff --git a/tests/dll/test_nimhcr_integration.bat b/tests/dll/test_nimhcr_integration.bat
deleted file mode 100644
index 66e6beac4..000000000
--- a/tests/dll/test_nimhcr_integration.bat
+++ /dev/null
@@ -1,10 +0,0 @@
-set NIM=nim
-set NIM_FLAGS=-d:debug
-
-%NIM% c --outdir:"." %NIM_FLAGS% ../../lib/nimrtl.nim
-%NIM% c --outdir:"." %NIM_FLAGS% ../../lib/nimhcr.nim
-
-set HCR_FLAGS=--forceBuild --hotCodeReloading:on --nimcache:nimcache %NIM_FLAGS%
-
-%NIM% %HCR_FLAGS% c nimhcr_integration.nim
-nimhcr_integration %NIM% %HCR_FLAGS% c nimhcr_integration.nim
diff --git a/tests/dll/test_nimhcr_integration.sh b/tests/dll/test_nimhcr_integration.sh
deleted file mode 100755
index a2e2d0483..000000000
--- a/tests/dll/test_nimhcr_integration.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-set -e
-
-rm -rf nimcache
-
-NIM_FLAGS=${*:- -d:debug}
-NIM=nim
-
-$NIM c --outdir:"." $NIM_FLAGS ../../lib/nimrtl.nim
-$NIM c --outdir:"." $NIM_FLAGS ../../lib/nimhcr.nim
-
-echo ===== Compiling HCR Integration Test =====
-HCR_FLAGS="--forceBuild --hotCodeReloading:on --nimcache:nimcache $NIM_FLAGS"
-$NIM $HCR_FLAGS c nimhcr_integration.nim
-export LD_LIBRARY_PATH=$(pwd):$LD_LIBRARY_PATH
-./nimhcr_integration $NIM $HCR_FLAGS c nimhcr_integration.nim