tests: handle any cmake detected python interpreter
This commit is contained in:
parent
5bbbe3902b
commit
fa43b54780
|
@ -42,4 +42,4 @@ target_link_libraries(block_weight
|
||||||
|
|
||||||
add_test(
|
add_test(
|
||||||
NAME block_weight
|
NAME block_weight
|
||||||
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/compare.py ${CMAKE_CURRENT_SOURCE_DIR}/block_weight.py ${CMAKE_CURRENT_BINARY_DIR}/block_weight)
|
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/compare.py ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/block_weight.py ${CMAKE_CURRENT_BINARY_DIR}/block_weight)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
# Simulate a maximal block attack on the Monero network
|
# Simulate a maximal block attack on the Monero network
|
||||||
# This uses the scheme proposed by ArticMine
|
# This uses the scheme proposed by ArticMine
|
||||||
# Written by Sarang Nother
|
# Written by Sarang Nother
|
||||||
|
|
|
@ -3,10 +3,17 @@
|
||||||
import sys
|
import sys
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
print 'running: ', sys.argv[1]
|
if len(sys.argv) == 4:
|
||||||
S0 = subprocess.check_output(sys.argv[1], stderr=subprocess.STDOUT)
|
first = [sys.argv[1], sys.argv[2]]
|
||||||
print 'running: ', sys.argv[2]
|
second = [sys.argv[3]]
|
||||||
S1 = subprocess.check_output(sys.argv[2], stderr=subprocess.STDOUT)
|
else:
|
||||||
|
first = [sys.argv[1]]
|
||||||
|
second = [sys.argv[2]]
|
||||||
|
|
||||||
|
print 'running: ', first
|
||||||
|
S0 = subprocess.check_output(first, stderr=subprocess.STDOUT)
|
||||||
|
print 'running: ', second
|
||||||
|
S1 = subprocess.check_output(second, stderr=subprocess.STDOUT)
|
||||||
print 'comparing'
|
print 'comparing'
|
||||||
if S0 != S1:
|
if S0 != S1:
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
Loading…
Reference in New Issue