File tree Expand file tree Collapse file tree 6 files changed +7
-18
lines changed Expand file tree Collapse file tree 6 files changed +7
-18
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ coverage_percent.txt
100
100
linux-coverage-build
101
101
linux-build
102
102
win32-build
103
- test /functional / config.ini
103
+ test /config.ini
104
104
test /cache /*
105
105
106
106
! src /leveldb * /Makefile
Original file line number Diff line number Diff line change @@ -1160,7 +1160,7 @@ AC_SUBST(EVENT_PTHREADS_LIBS)
1160
1160
AC_SUBST ( ZMQ_LIBS )
1161
1161
AC_SUBST ( PROTOBUF_LIBS )
1162
1162
AC_SUBST ( QR_LIBS )
1163
- AC_CONFIG_FILES ( [ Makefile src/Makefile doc/man/Makefile share/setup.nsi share/qt/Info.plist test/functional/config.ini test/util/ config.ini] )
1163
+ AC_CONFIG_FILES ( [ Makefile src/Makefile doc/man/Makefile share/setup.nsi share/qt/Info.plist test/config.ini] )
1164
1164
AC_CONFIG_FILES ( [ contrib/devtools/split-debug.sh] ,[ chmod +x contrib/devtools/split-debug.sh] )
1165
1165
AC_CONFIG_FILES ( [ doc/Doxyfile] )
1166
1166
AC_CONFIG_LINKS ( [ test/functional/test_runner.py:test/functional/test_runner.py] )
@@ -1213,8 +1213,8 @@ esac
1213
1213
dnl Replace the BUILDDIR path with the correct Windows path if compiling on Native Windows
1214
1214
case ${OS} in
1215
1215
*Windows*)
1216
- sed 's/BUILDDIR="\/\([ [ a-z] ] \)/BUILDDIR="\1:/' test/functional/ config.ini > test/functional /config-2.ini
1217
- 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
1218
1218
;;
1219
1219
esac
1220
1220
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 @@ -179,7 +179,7 @@ def main():
179
179
180
180
# Read config generated by configure.
181
181
config = configparser .ConfigParser ()
182
- configfile = os .path .abspath (os .path .dirname (__file__ )) + "/config.ini"
182
+ configfile = os .path .abspath (os .path .dirname (__file__ )) + "/../ config.ini"
183
183
config .read_file (open (configfile ))
184
184
185
185
passon_args .append ("--configfile=%s" % configfile )
Original file line number Diff line number Diff line change 20
20
import bctest
21
21
22
22
config = configparser .ConfigParser ()
23
- config .read_file (open (os .path .dirname (__file__ ) + "/config.ini" ))
23
+ config .read_file (open (os .path .dirname (__file__ ) + "/../ config.ini" ))
24
24
25
25
buildenv = argparse .Namespace (exeext = config ["environment" ]["EXEEXT" ],
26
26
SRCDIR = config ["environment" ]["SRCDIR" ],
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments