fix build if spaces in src dir path
This commit is contained in:
parent
a230b05887
commit
b1f584dbc1
2 changed files with 7 additions and 6 deletions
|
@ -167,8 +167,8 @@ BITCOIN_CORE_H = \
|
||||||
|
|
||||||
obj/build.h: FORCE
|
obj/build.h: FORCE
|
||||||
@$(MKDIR_P) $(builddir)/obj
|
@$(MKDIR_P) $(builddir)/obj
|
||||||
@$(top_srcdir)/share/genbuild.sh $(abs_top_builddir)/src/obj/build.h \
|
@$(top_srcdir)/share/genbuild.sh "$(abs_top_builddir)/src/obj/build.h" \
|
||||||
$(abs_top_srcdir)
|
"$(abs_top_srcdir)"
|
||||||
libbitcoin_util_a-clientversion.$(OBJEXT): obj/build.h
|
libbitcoin_util_a-clientversion.$(OBJEXT): obj/build.h
|
||||||
|
|
||||||
# server: shared between bitcoind and bitcoin-qt
|
# server: shared between bitcoind and bitcoin-qt
|
||||||
|
|
|
@ -87,7 +87,7 @@ BASE_SCRIPTS= [
|
||||||
ZMQ_SCRIPTS = [
|
ZMQ_SCRIPTS = [
|
||||||
# ZMQ test can only be run if bitcoin was built with zmq-enabled.
|
# ZMQ test can only be run if bitcoin was built with zmq-enabled.
|
||||||
# call test_runner.py with -nozmq to explicitly exclude these tests.
|
# call test_runner.py with -nozmq to explicitly exclude these tests.
|
||||||
"zmq_test.py"]
|
'zmq_test.py']
|
||||||
|
|
||||||
EXTENDED_SCRIPTS = [
|
EXTENDED_SCRIPTS = [
|
||||||
# These tests are not run by the travis build process.
|
# These tests are not run by the travis build process.
|
||||||
|
@ -203,9 +203,9 @@ def main():
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
if args.help:
|
if args.help:
|
||||||
# Print help for test_runner.py, then print help of the first script and exit.
|
# Print help for test_runner.py, then print help of the first script (with args removed) and exit.
|
||||||
parser.print_help()
|
parser.print_help()
|
||||||
subprocess.check_call((config["environment"]["SRCDIR"] + '/test/functional/' + test_list[0]).split() + ['-h'])
|
subprocess.check_call([(config["environment"]["SRCDIR"] + '/test/functional/' + test_list[0].split()[0])] + ['-h'])
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
run_tests(test_list, config["environment"]["SRCDIR"], config["environment"]["BUILDDIR"], config["environment"]["EXEEXT"], args.jobs, args.coverage, passon_args)
|
run_tests(test_list, config["environment"]["SRCDIR"], config["environment"]["BUILDDIR"], config["environment"]["EXEEXT"], args.jobs, args.coverage, passon_args)
|
||||||
|
@ -296,9 +296,10 @@ class TestHandler:
|
||||||
port_seed = ["--portseed={}".format(len(self.test_list) + self.portseed_offset)]
|
port_seed = ["--portseed={}".format(len(self.test_list) + self.portseed_offset)]
|
||||||
log_stdout = tempfile.SpooledTemporaryFile(max_size=2**16)
|
log_stdout = tempfile.SpooledTemporaryFile(max_size=2**16)
|
||||||
log_stderr = tempfile.SpooledTemporaryFile(max_size=2**16)
|
log_stderr = tempfile.SpooledTemporaryFile(max_size=2**16)
|
||||||
|
test_argv = t.split()
|
||||||
self.jobs.append((t,
|
self.jobs.append((t,
|
||||||
time.time(),
|
time.time(),
|
||||||
subprocess.Popen((self.tests_dir + t).split() + self.flags + port_seed,
|
subprocess.Popen([self.tests_dir + test_argv[0]] + test_argv[1:] + self.flags + port_seed,
|
||||||
universal_newlines=True,
|
universal_newlines=True,
|
||||||
stdout=log_stdout,
|
stdout=log_stdout,
|
||||||
stderr=log_stderr),
|
stderr=log_stderr),
|
||||||
|
|
Loading…
Reference in a new issue