diff --git a/Makefile.am b/Makefile.am
index c72db2c98..a4c16d5a5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -29,9 +29,9 @@ OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_FANCY_PLIST) $(OSX_INSTALLER_ICONS) \
$(top_srcdir)/contrib/macdeploy/DS_Store
COVERAGE_INFO = baseline_filtered_combined.info baseline.info block_test.info \
- leveldb_baseline.info test_bitcoin_filtered.info total_coverage.info \
+ leveldb_baseline.info test_darkcoin_filtered.info total_coverage.info \
baseline_filtered.info block_test_filtered.info \
- leveldb_baseline_filtered.info test_bitcoin_coverage.info test_bitcoin.info
+ leveldb_baseline_filtered.info test_darkcoin_coverage.info test_darkcoin.info
dist-hook:
-$(MAKE) -C $(top_distdir)/src/leveldb clean
@@ -119,16 +119,16 @@ leveldb_baseline_filtered.info: leveldb_baseline.info
baseline_filtered_combined.info: leveldb_baseline_filtered.info baseline_filtered.info
$(LCOV) -a leveldb_baseline_filtered.info -a baseline_filtered.info -o $@
-test_bitcoin.info: baseline_filtered_combined.info
+test_darkcoin.info: baseline_filtered_combined.info
$(MAKE) -C src/ check
- $(LCOV) -c -d $(abs_builddir)/src -t test_bitcoin -o $@
+ $(LCOV) -c -d $(abs_builddir)/src -t test_darkcoin -o $@
$(LCOV) -z -d $(abs_builddir)/src
$(LCOV) -z -d $(abs_builddir)/src/leveldb
-test_bitcoin_filtered.info: test_bitcoin.info
+test_darkcoin_filtered.info: test_darkcoin.info
$(LCOV) -r $< "/usr/include/*" -o $@
-block_test.info: test_bitcoin_filtered.info
+block_test.info: test_darkcoin_filtered.info
$(MKDIR_P) qa/tmp
-@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0
$(LCOV) -c -d $(abs_builddir)/src --t BitcoinJBlockTest -o $@
@@ -138,13 +138,13 @@ block_test.info: test_bitcoin_filtered.info
block_test_filtered.info: block_test.info
$(LCOV) -r $< "/usr/include/*" -o $@
-test_bitcoin_coverage.info: baseline_filtered_combined.info test_bitcoin_filtered.info
- $(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_bitcoin_filtered.info -o $@
+test_darkcoin_coverage.info: baseline_filtered_combined.info test_darkcoin_filtered.info
+ $(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_darkcoin_filtered.info -o $@
-total_coverage.info: baseline_filtered_combined.info test_bitcoin_filtered.info block_test_filtered.info
- $(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_bitcoin_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt
+total_coverage.info: baseline_filtered_combined.info test_darkcoin_filtered.info block_test_filtered.info
+ $(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_darkcoin_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt
-test_bitcoin.coverage/.dirstamp: test_bitcoin_coverage.info
+test_darkcoin.coverage/.dirstamp: test_darkcoin_coverage.info
$(GENHTML) -s $< -o $(@D)
@touch $@
@@ -152,7 +152,7 @@ total.coverage/.dirstamp: total_coverage.info
$(GENHTML) -s $< -o $(@D)
@touch $@
-cov: test_bitcoin.coverage/.dirstamp total.coverage/.dirstamp
+cov: test_darkcoin.coverage/.dirstamp total.coverage/.dirstamp
endif
@@ -169,4 +169,4 @@ CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER)
.INTERMEDIATE: $(COVERAGE_INFO)
clean-local:
- rm -rf test_bitcoin.coverage/ total.coverage/ $(OSX_APP)
+ rm -rf test_darkcoin.coverage/ total.coverage/ $(OSX_APP)
diff --git a/contrib/debian/rules b/contrib/debian/rules
index 52b357cf0..692d28332 100755
--- a/contrib/debian/rules
+++ b/contrib/debian/rules
@@ -1,9 +1,9 @@
#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-
-#DEB_MAKE_CHECK_TARGET = test_bitcoin
+#DEB_MAKE_CHECK_TARGET = test_darkcoin
#build/bitcoind::
-# $(if $(filter nocheck,$(DEB_BUILD_OPTIONS)),,src/test_bitcoin)
+# $(if $(filter nocheck,$(DEB_BUILD_OPTIONS)),,src/test_darkcoin)
DEB_INSTALL_EXAMPLES_bitcoind += debian/examples/*
DEB_INSTALL_MANPAGES_bitcoind += debian/manpages/*
diff --git a/contrib/devtools/README.md b/contrib/devtools/README.md
index a57b4e561..e440a534c 100644
--- a/contrib/devtools/README.md
+++ b/contrib/devtools/README.md
@@ -64,10 +64,10 @@ If only supported symbols are used the return value will be 0 and the output wil
If there are 'unsupported' symbols, the return value will be 1 a list like this will be printed:
- .../64/test_bitcoin: symbol memcpy from unsupported version GLIBC_2.14
- .../64/test_bitcoin: symbol __fdelt_chk from unsupported version GLIBC_2.15
- .../64/test_bitcoin: symbol std::out_of_range::~out_of_range() from unsupported version GLIBCXX_3.4.15
- .../64/test_bitcoin: symbol _ZNSt8__detail15_List_nod from unsupported version GLIBCXX_3.4.15
+ .../64/test_darkcoin: symbol memcpy from unsupported version GLIBC_2.14
+ .../64/test_darkcoin: symbol __fdelt_chk from unsupported version GLIBC_2.15
+ .../64/test_darkcoin: symbol std::out_of_range::~out_of_range() from unsupported version GLIBCXX_3.4.15
+ .../64/test_darkcoin: symbol _ZNSt8__detail15_List_nod from unsupported version GLIBCXX_3.4.15
update-translations.py
=======================
diff --git a/doc/unit-tests.md b/doc/unit-tests.md
index f1d3a8bc5..fe4104a18 100644
--- a/doc/unit-tests.md
+++ b/doc/unit-tests.md
@@ -6,7 +6,7 @@ and tests weren't explicitly disabled.
After configuring, they can be run with 'make check'.
-To run the bitcoind tests manually, launch src/test/test_bitcoin .
+To run the bitcoind tests manually, launch src/test/test_darkcoin .
To add more bitcoind tests, add `BOOST_AUTO_TEST_CASE` functions to the existing
.cpp files in the test/ directory or add new .cpp files that
diff --git a/qa/pull-tester/build-tests.sh.in b/qa/pull-tester/build-tests.sh.in
index ebf377a48..23098f119 100755
--- a/qa/pull-tester/build-tests.sh.in
+++ b/qa/pull-tester/build-tests.sh.in
@@ -59,11 +59,11 @@ if [ -d "$OUT_DIR" -a -w "$OUT_DIR" ]; then
set +e
# Windows:
cp @abs_top_srcdir@/win32-build/src/bitcoind.exe $OUT_DIR/bitcoind.exe
- cp @abs_top_srcdir@/win32-build/src/test/test_bitcoin.exe $OUT_DIR/test_bitcoin.exe
+ cp @abs_top_srcdir@/win32-build/src/test/test_darkcoin.exe $OUT_DIR/test_darkcoin.exe
cp @abs_top_srcdir@/win32-build/src/qt/bitcoind-qt.exe $OUT_DIR/bitcoin-qt.exe
# Linux:
cp @abs_top_srcdir@/linux-build/src/bitcoind $OUT_DIR/bitcoind
- cp @abs_top_srcdir@/linux-build/src/test/test_bitcoin $OUT_DIR/test_bitcoin
+ cp @abs_top_srcdir@/linux-build/src/test/test_darkcoin $OUT_DIR/test_darkcoin
cp @abs_top_srcdir@/linux-build/src/qt/bitcoind-qt $OUT_DIR/bitcoin-qt
set -e
fi
diff --git a/src/darkcoind.cpp b/src/darkcoind.cpp
index c968f9627..83fb70129 100644
--- a/src/darkcoind.cpp
+++ b/src/darkcoind.cpp
@@ -64,7 +64,7 @@ bool AppInit(int argc, char* argv[])
//
// Parameters
//
- // If Qt is used, parameters/darkcoin.conf are parsed in qt/bitcoin.cpp's main()
+ // If Qt is used, parameters/darkcoin.conf are parsed in qt/darkcoin.cpp's main()
ParseParameters(argc, argv);
if (!boost::filesystem::is_directory(GetDataDir(false)))
{
diff --git a/src/qt/Makefile.am b/src/qt/Makefile.am
index 24d7ef707..de9eea0eb 100644
--- a/src/qt/Makefile.am
+++ b/src/qt/Makefile.am
@@ -153,7 +153,7 @@ BITCOIN_MM = \
macnotificationhandler.mm
QT_MOC = \
- bitcoin.moc \
+ darkcoin.moc \
intro.moc \
overviewpage.moc \
rpcconsole.moc
diff --git a/src/qt/darkcoin.cpp b/src/qt/darkcoin.cpp
index f0e675a16..5844db173 100644
--- a/src/qt/darkcoin.cpp
+++ b/src/qt/darkcoin.cpp
@@ -221,7 +221,7 @@ private:
void startThread();
};
-#include "bitcoin.moc"
+#include "darkcoin.moc"
BitcoinCore::BitcoinCore():
QObject()
diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts
index dca26cf4d..47c9f39f3 100644
--- a/src/qt/locale/bitcoin_en.ts
+++ b/src/qt/locale/bitcoin_en.ts
@@ -724,7 +724,7 @@ Address: %4
Wallet is <b>encrypted</b> and currently <b>locked</b>
-
+
A fatal error occurred. Bitcoin can no longer continue safely and will quit.
@@ -1706,7 +1706,7 @@ Address: %4
QObject
-
+
diff --git a/src/test/README.md b/src/test/README.md
index 7efce6f05..894a54144 100644
--- a/src/test/README.md
+++ b/src/test/README.md
@@ -5,9 +5,9 @@ sense to simply use this framework rather than require developers to
configure some other framework (we want as few impediments to creating
unit tests as possible).
-The build system is setup to compile an executable called "test_bitcoin"
+The build system is setup to compile an executable called "test_darkcoin"
that runs all of the unit tests. The main source file is called
-test_bitcoin.cpp, which simply includes other files that contain the
+test_darkcoin.cpp, which simply includes other files that contain the
actual unit tests (outside of a couple required preprocessor
directives). The pattern is to create one test file for each class or
source file for which you want to create unit tests. The file naming
diff --git a/src/test/test_darkcoin.cpp b/src/test/test_darkcoin.cpp
index a0137aac9..7c30bfa36 100644
--- a/src/test/test_darkcoin.cpp
+++ b/src/test/test_darkcoin.cpp
@@ -36,7 +36,7 @@ struct TestingSetup {
#ifdef ENABLE_WALLET
bitdb.MakeMock();
#endif
- pathTemp = GetTempPath() / strprintf("test_bitcoin_%lu_%i", (unsigned long)GetTime(), (int)(GetRand(100000)));
+ pathTemp = GetTempPath() / strprintf("test_darkcoin_%lu_%i", (unsigned long)GetTime(), (int)(GetRand(100000)));
boost::filesystem::create_directories(pathTemp);
mapArgs["-datadir"] = pathTemp.string();
pblocktree = new CBlockTreeDB(1 << 20, true);