Commit f27f7cdb authored by Nguyen, Thien Minh's avatar Nguyen, Thien Minh
Browse files

Redirect stderr for cleaner output



Signed-off-by: default avatarThien Nguyen <nguyentm@ornl.gov>
parent f2d650f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,4 +26,4 @@ for srcFile in listOfSrcFiles:
for testCase in listOfTestCases:
  print("Run Benchmark: ", testCase)
  testExe = dirPath + "/" + testCase
  process = subprocess.run([testExe], stdout=sys.stdout)
  process = subprocess.run([testExe], stdout=sys.stdout, stderr=subprocess.PIPE)