tests: handle any cmake detected python interpreter

This commit is contained in:
moneromooo-monero 2019-02-27 20:57:07 +00:00
parent 5bbbe3902b
commit fa43b54780
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
3 changed files with 13 additions and 6 deletions

View file

@ -3,10 +3,17 @@
import sys
import subprocess
print 'running: ', sys.argv[1]
S0 = subprocess.check_output(sys.argv[1], stderr=subprocess.STDOUT)
print 'running: ', sys.argv[2]
S1 = subprocess.check_output(sys.argv[2], stderr=subprocess.STDOUT)
if len(sys.argv) == 4:
first = [sys.argv[1], sys.argv[2]]
second = [sys.argv[3]]
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'
if S0 != S1:
sys.exit(1)