From d9538a4745a03ba2f90d5afce557d182ef86410d Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 22 Aug 2021 11:55:37 -0400 Subject: [PATCH] skip some aliases when checking for missing force style tests --- unittest/force-styles/check_tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unittest/force-styles/check_tests.py b/unittest/force-styles/check_tests.py index cca1b9f84d..5261c02330 100755 --- a/unittest/force-styles/check_tests.py +++ b/unittest/force-styles/check_tests.py @@ -88,6 +88,9 @@ for header in headers: style = m[1] if upper.match(style): continue + if style in ['reax/c', 'reax/c/omp', 'reax/c/kk', + 'reax/c/kk/device', 'reax/c/kk/host', 'meam/c']: + continue # detect, process, and flag suffix styles: info = { 'kokkos': 0, 'gpu': 0, 'intel': 0, \