mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
[test] bctest.py: Revert faa41ee
This commit is contained in:
parent
e6a4d48a9b
commit
fa7abe0a00
@ -2,7 +2,6 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
from __future__ import division,print_function,unicode_literals
|
from __future__ import division,print_function,unicode_literals
|
||||||
from io import open
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import os
|
import os
|
||||||
import json
|
import json
|
||||||
@ -17,7 +16,7 @@ def bctest(testDir, testObj, exeext):
|
|||||||
inputData = None
|
inputData = None
|
||||||
if "input" in testObj:
|
if "input" in testObj:
|
||||||
filename = testDir + "/" + testObj['input']
|
filename = testDir + "/" + testObj['input']
|
||||||
inputData = open(filename, 'rb').read()
|
inputData = open(filename).read()
|
||||||
stdinCfg = subprocess.PIPE
|
stdinCfg = subprocess.PIPE
|
||||||
|
|
||||||
outputFn = None
|
outputFn = None
|
||||||
|
Loading…
Reference in New Issue
Block a user