From 0e977c43085818ed97dccfe793dbf50ac5462fa2 Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Fri, 27 May 2022 08:48:06 -0400
Subject: [PATCH] Fix valgrind tests running

Catch command line interface has changed
---
 dev/docker/valgrind/run_valgrind.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/docker/valgrind/run_valgrind.py b/dev/docker/valgrind/run_valgrind.py
index 08cc754..f97ec4c 100644
--- a/dev/docker/valgrind/run_valgrind.py
+++ b/dev/docker/valgrind/run_valgrind.py
@@ -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]
-- 
GitLab