Changed log_level for boost unit tests to "test_suite".

This commit is contained in:
Gaizka Navarro 2015-11-20 10:06:53 +01:00
Родитель ea37a69bd9
Коммит 93987cdc5d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -18,7 +18,7 @@ def runBoostUnitTests(testDir, outputDir):
if test.lower().endswith(".exe"):
outputFile = os.path.join(outputDir, test + ".xml")
print "Running test executable %s with result in %s" % (test, outputFile)
subprocess.check_call([os.path.join(testDir, test), "--log_format=XML", "--log_sink=%s" % outputFile, "--log_level=error", "--report_level=no"])
subprocess.check_call([os.path.join(testDir, test), "--log_format=XML", "--log_sink=%s" % outputFile, "--log_level=test_suite", "--report_level=no"])
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Runs all boost unit tests in the directory")