From 3f2e2bdb25de271351c807f2f676677d1caa576c Mon Sep 17 00:00:00 2001 From: Kosta Date: Mon, 5 Aug 2013 13:10:24 +0200 Subject: [PATCH] printing the executable into the console window --- scripts/approvalTests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/approvalTests.py b/scripts/approvalTests.py index 5cdac57d..62727d4f 100644 --- a/scripts/approvalTests.py +++ b/scripts/approvalTests.py @@ -20,6 +20,8 @@ if len(sys.argv) == 2: else: cmdPath = os.path.join( catchPath, 'projects/XCode4/CatchSelfTest/DerivedData/CatchSelfTest/Build/Products/Debug/CatchSelfTest' ) +print "Using executable: " + cmdPath + f = open( rawResultsPath, 'w' ) subprocess.call([ cmdPath, "~dummy", "-r", "console" ], stdout=f, stderr=f ) subprocess.call([ cmdPath, "~dummy", "-s", "-w", "NoAssertions", "-r", "console" ], stdout=f, stderr=f )