scripts/run_ctest.py: Output results to Test.xml file...
f2eaced7
Michael Kubacki
committed
1 changed file
run_ctest.py
/scripts/run_ctest.py-1+1
/scripts/run_ctest.py
Add comment 26 print('(Note: This script must be run from your build directory.)')
Add comment 27 sys.exit(-1)
Add comment 28
Add comment 29 Minus   cmd = ['ctest', '-j{}'.format(args.parallel)]
Add comment 29 Plus   cmd = ['ctest', '-T', 'Test', '-j{}'.format(args.parallel)]
Add comment 30 if not args.quiet:
Add comment 31 cmd.append('--output-on-failure')
Add comment 32 cmd += args.args