File tree Expand file tree Collapse file tree 9 files changed +157
-175
lines changed Expand file tree Collapse file tree 9 files changed +157
-175
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ Bitcoin-Qt.app
80
80
# Unit-tests
81
81
Makefile.test
82
82
bitcoin-qt_test
83
- src /test /buildenv.py
84
83
85
84
# Resources cpp
86
85
qrc_ * .cpp
@@ -101,8 +100,7 @@ coverage_percent.txt
101
100
linux-coverage-build
102
101
linux-build
103
102
win32-build
104
- test /functional /config.ini
105
- test /util /buildenv.py
103
+ test /config.ini
106
104
test /cache /*
107
105
108
106
! src /leveldb * /Makefile
Original file line number Diff line number Diff line change @@ -223,7 +223,6 @@ dist_noinst_SCRIPTS = autogen.sh
223
223
EXTRA_DIST = $(top_srcdir ) /share/genbuild.sh test/functional/test_runner.py test/functional $(DIST_CONTRIB ) $(DIST_DOCS ) $(WINDOWS_PACKAGING ) $(OSX_PACKAGING ) $(BIN_CHECKS )
224
224
225
225
EXTRA_DIST += \
226
- test/util/bctest.py \
227
226
test/util/bitcoin-util-test.py \
228
227
test/util/data/bitcoin-util-test.json \
229
228
test/util/data/blanktxv1.hex \
@@ -277,9 +276,6 @@ EXTRA_DIST += \
277
276
278
277
CLEANFILES = $(OSX_DMG ) $(BITCOIN_WIN_INSTALLER )
279
278
280
- # This file is problematic for out-of-tree builds if it exists.
281
- DISTCLEANFILES = test/util/buildenv.pyc
282
-
283
279
.INTERMEDIATE : $(COVERAGE_INFO )
284
280
285
281
DISTCHECK_CONFIGURE_FLAGS = --enable-man
Original file line number Diff line number Diff line change @@ -1161,13 +1161,11 @@ AC_SUBST(EVENT_PTHREADS_LIBS)
1161
1161
AC_SUBST ( ZMQ_LIBS )
1162
1162
AC_SUBST ( PROTOBUF_LIBS )
1163
1163
AC_SUBST ( QR_LIBS )
1164
- AC_CONFIG_FILES ( [ Makefile src/Makefile doc/man/Makefile share/setup.nsi share/qt/Info.plist test/functional/config.ini] )
1165
- AC_CONFIG_FILES ( [ test/util/buildenv.py] ,[ chmod +x test/util/buildenv.py] )
1164
+ AC_CONFIG_FILES ( [ Makefile src/Makefile doc/man/Makefile share/setup.nsi share/qt/Info.plist test/config.ini] )
1166
1165
AC_CONFIG_FILES ( [ contrib/devtools/split-debug.sh] ,[ chmod +x contrib/devtools/split-debug.sh] )
1167
1166
AC_CONFIG_FILES ( [ doc/Doxyfile] )
1168
1167
AC_CONFIG_LINKS ( [ test/functional/test_runner.py:test/functional/test_runner.py] )
1169
1168
AC_CONFIG_LINKS ( [ test/util/bitcoin-util-test.py:test/util/bitcoin-util-test.py] )
1170
- AC_CONFIG_LINKS ( [ test/util/bctest.py:test/util/bctest.py] )
1171
1169
1172
1170
dnl boost's m4 checks do something really nasty: they export these vars. As a
1173
1171
dnl result, they leak into secp256k1's configure and crazy things happen.
@@ -1215,8 +1213,8 @@ esac
1215
1213
dnl Replace the BUILDDIR path with the correct Windows path if compiling on Native Windows
1216
1214
case ${OS} in
1217
1215
*Windows*)
1218
- sed 's/BUILDDIR="\/\([ [ a-z] ] \)/BUILDDIR="\1:/' test/functional/ config.ini > test/functional /config-2.ini
1219
- mv test/functional/ config-2.ini test/functional /config.ini
1216
+ sed 's/BUILDDIR="\/\([ [ a-z] ] \)/BUILDDIR="\1:/' test/config.ini > test/config-2.ini
1217
+ mv test/config-2.ini test/config.ini
1220
1218
;;
1221
1219
esac
1222
1220
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ bitcoin_test_clean : FORCE
148
148
149
149
check-local:
150
150
@echo "Running test/util/bitcoin-util-test.py..."
151
- $(PYTHON) $( top_builddir)/test/util/bitcoin-util-test.py
151
+ $(top_builddir)/test/util/bitcoin-util-test.py
152
152
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check
153
153
if EMBEDDED_UNIVALUE
154
154
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue check
Original file line number Diff line number Diff line change 3
3
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
5
# These environment variables are set by the build process and read by
6
- # test/functional/test_runner.py
6
+ # test/functional/test_runner.py and test/util/bitcoin-util-test.py
7
7
8
8
[environment]
9
9
SRCDIR=@abs_top_srcdir@
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ def main():
180
180
181
181
# Read config generated by configure.
182
182
config = configparser .ConfigParser ()
183
- configfile = os .path .abspath (os .path .dirname (__file__ )) + "/config.ini"
183
+ configfile = os .path .abspath (os .path .dirname (__file__ )) + "/../ config.ini"
184
184
config .read_file (open (configfile ))
185
185
186
186
passon_args .append ("--configfile=%s" % configfile )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments