2013-04-24 19:58:57 +02:00
|
|
|
import os
|
|
|
|
import sys
|
2014-04-25 07:10:50 +02:00
|
|
|
import subprocess
|
2013-04-24 19:58:57 +02:00
|
|
|
|
2017-01-09 15:12:12 +01:00
|
|
|
|
2014-04-25 07:10:50 +02:00
|
|
|
catchPath = os.path.dirname(os.path.realpath( os.path.dirname(sys.argv[0])))
|
|
|
|
|
2017-01-09 15:12:12 +01:00
|
|
|
def getBuildExecutable():
|
2018-06-25 19:38:08 +02:00
|
|
|
dir = os.environ.get('CATCH_DEV_OUT_DIR', "cmake-build-debug/projects/SelfTest")
|
2017-01-09 15:12:12 +01:00
|
|
|
return dir
|
|
|
|
|
2014-04-25 07:10:50 +02:00
|
|
|
def runAndCapture( args ):
|
|
|
|
child = subprocess.Popen(" ".join( args ), shell=True, stdout=subprocess.PIPE)
|
|
|
|
lines = []
|
|
|
|
line = ""
|
|
|
|
while True:
|
|
|
|
out = child.stdout.read(1)
|
2018-04-19 15:02:15 +02:00
|
|
|
if out == '' and child.poll():
|
2014-04-25 07:10:50 +02:00
|
|
|
break
|
|
|
|
if out != '':
|
|
|
|
if out == '\n':
|
|
|
|
lines.append( line )
|
|
|
|
line = ""
|
|
|
|
else:
|
|
|
|
line = line + out
|
2017-01-09 15:12:12 +01:00
|
|
|
return lines
|