diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2013-09-10 18:22:47 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2013-09-10 18:23:22 -0400 |
commit | b4d8d03b86405193e79310231a2d7ce3b636d554 (patch) | |
tree | 12c97f303826cd9b360435ad7fe6b893b5b15113 /src/test | |
parent | 2bc004c658ab14f1708a40e1e15536d00553d50d (diff) |
autotools: use an absolute path to test data
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/Makefile.am b/src/test/Makefile.am index 80571aa295..2995deff0a 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -10,7 +10,7 @@ bin_PROGRAMS = test_bitcoin TESTS = test_bitcoin -TEST_DATA_DIR=$(top_srcdir)/src/test/data +TEST_DATA_DIR=$(srcdir)/data TEST_DATA_FILES= $(TEST_DATA_DIR)/script_valid.json \ $(TEST_DATA_DIR)/base58_keys_valid.json $(TEST_DATA_DIR)/sig_canonical.json \ @@ -22,7 +22,7 @@ TEST_DATA_FILES= $(TEST_DATA_DIR)/script_valid.json \ # test_bitcoin binary # test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(TESTDEFS) \ - -DTEST_DATA_DIR=$(TEST_DATA_DIR) + -DTEST_DATA_DIR=$(abs_srcdir)/data test_bitcoin_LDADD = $(LIBBITCOIN) $(LIBLEVELDB) $(LIBMEMENV) \ $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) test_bitcoin_SOURCES = accounting_tests.cpp alert_tests.cpp \ |