aboutsummaryrefslogtreecommitdiff
path: root/ci/test
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2021-02-22 10:30:54 +0000
committerGitHub <[email protected]>2021-02-22 10:30:54 +0000
commit1bafd5733102924e154b718dbeda516e9a1125dc (patch)
tree6e11af805c0644c77538d4f1947274a67d095a31 /ci/test
parent1.21 codebase rebrand (#1711) (diff)
downloaddiscoin-1bafd5733102924e154b718dbeda516e9a1125dc.tar.xz
discoin-1bafd5733102924e154b718dbeda516e9a1125dc.zip
Disable compatibility tests (#1754)
* Switch Bitcoin references to Dogecoin in Travis * Move backwards compatibility tests to their own suite (backwards compatibility tests do not have suitable clients to test against)
Diffstat (limited to 'ci/test')
-rwxr-xr-xci/test/05_before_script.sh4
-rwxr-xr-xci/test/06_script_b.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/ci/test/05_before_script.sh b/ci/test/05_before_script.sh
index 42c244c2f..2a8b61b20 100755
--- a/ci/test/05_before_script.sh
+++ b/ci/test/05_before_script.sh
@@ -8,9 +8,9 @@ export LC_ALL=C.UTF-8
# Make sure default datadir does not exist and is never read by creating a dummy file
if [ "$CI_OS_NAME" == "macos" ]; then
- echo > $HOME/Library/Application\ Support/Bitcoin
+ echo > $HOME/Library/Application\ Support/Dogecoin
else
- DOCKER_EXEC echo \> \$HOME/.bitcoin
+ DOCKER_EXEC echo \> \$HOME/.dogecoin
fi
DOCKER_EXEC mkdir -p ${DEPENDS_DIR}/SDKs ${DEPENDS_DIR}/sdk-sources
diff --git a/ci/test/06_script_b.sh b/ci/test/06_script_b.sh
index 7aea21f25..d5a63d852 100755
--- a/ci/test/06_script_b.sh
+++ b/ci/test/06_script_b.sh
@@ -38,7 +38,7 @@ fi
if [ "$RUN_UNIT_TESTS_SEQUENTIAL" = "true" ]; then
BEGIN_FOLD unit-tests-seq
- DOCKER_EXEC ${TEST_RUNNER_ENV} DIR_UNIT_TEST_DATA=${DIR_UNIT_TEST_DATA} LD_LIBRARY_PATH=$DEPENDS_DIR/$HOST/lib "${BASE_BUILD_DIR}/bitcoin-*/src/test/test_bitcoin*" --catch_system_errors=no -l test_suite
+ DOCKER_EXEC ${TEST_RUNNER_ENV} DIR_UNIT_TEST_DATA=${DIR_UNIT_TEST_DATA} LD_LIBRARY_PATH=$DEPENDS_DIR/$HOST/lib "${BASE_BUILD_DIR}/dogecoin-*/src/test/test_dogecoin*" --catch_system_errors=no -l test_suite
END_FOLD
fi