Browse Source

Merge #8836: bitcoin-util-test.py should fail if the output file is empty

da94697 bitcoin-util-test.py should fail if the output file is empty (jnewbery)
0.14
Wladimir J. van der Laan 8 years ago
parent
commit
90adfabd5d
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 3
      src/test/bctest.py
  2. 19
      src/test/data/txcreate2.json

3
src/test/bctest.py

@ -24,6 +24,9 @@ def bctest(testDir, testObj, exeext): @@ -24,6 +24,9 @@ def bctest(testDir, testObj, exeext):
if "output_cmp" in testObj:
outputFn = testObj['output_cmp']
outputData = open(testDir + "/" + outputFn).read()
if not outputData:
print("Output data missing for " + outputFn)
sys.exit(1)
proc = subprocess.Popen(execrun, stdin=stdinCfg, stdout=subprocess.PIPE, stderr=subprocess.PIPE,universal_newlines=True)
try:
outs = proc.communicate(input=inputData)

19
src/test/data/txcreate2.json

@ -0,0 +1,19 @@ @@ -0,0 +1,19 @@
{
"txid": "cf90229625e9eb10f6be8156bf6aa5ec2eca19a42b1e05c11f3029b560a32e13",
"version": 1,
"locktime": 0,
"vin": [
],
"vout": [
{
"value": 0.00,
"n": 0,
"scriptPubKey": {
"asm": "",
"hex": "",
"type": "nonstandard"
}
}
],
"hex": "01000000000100000000000000000000000000"
}
Loading…
Cancel
Save