From f1780faea2daf48744d356a41314e336d59ab214 Mon Sep 17 00:00:00 2001 From: Bryan Herman Date: Sun, 29 Sep 2013 17:31:44 -0400 Subject: [PATCH] dont add compile test when specifying all-omp --- tests/run_tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/run_tests.py b/tests/run_tests.py index 4edc59630b..cbb80d2686 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -112,6 +112,8 @@ if len(sys.argv) > 1: else: for j in tests: if j.rfind(suffix) != -1: + if suffix == 'omp' and j == 'compile': + continue tests__.append(j) else: tests__.append(i) # append specific test (e.g., mpi-debug)