Add cmake output everywhere

This commit is contained in:
Maxime Gimeno 2019-04-04 10:39:18 +02:00
parent b1aeeeee3e
commit 31ba24e102
1 changed files with 3 additions and 4 deletions

View File

@ -39,10 +39,9 @@ with open(report_file, "rt") as test_report:
elif rx_examples.match(myline):
name="{str}_Examples".format(str=name)
if not os.path.isdir(name):
os.mkdir(name)
test_report=open("{dir}/{file}".format(dir=name, file=report_name), "w+")
is_writing=True
os.mkdir(name)
test_report=open("{dir}/{file}".format(dir=name, file=report_name), "w+")
is_writing=True
if is_writing:
is_writing=False
test_report.close()