Skip to content
Snippets Groups Projects
Commit 0e977c43 authored by Ian Bell's avatar Ian Bell
Browse files

Fix valgrind tests running

Catch command line interface has changed
parent adb411cf
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ EXE = '/teqp/build/catch_tests'
# Collect the list of tags to be run
all_tags = []
output = subprocess.run(f'{EXE} -t', shell = True, stdout = subprocess.PIPE).stdout.decode('utf-8')
output = subprocess.run(f'{EXE} --list-tags', shell = True, stdout = subprocess.PIPE).stdout.decode('utf-8')
for il, line in enumerate(output.split('\n')[1::]):
if not line or '[' not in line: continue
tag = '[' + line.split('[')[1]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment