diff options
Diffstat (limited to 'mesonbuild/mtest.py')
-rw-r--r-- | mesonbuild/mtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py index 817550e..e320d54 100644 --- a/mesonbuild/mtest.py +++ b/mesonbuild/mtest.py @@ -206,7 +206,7 @@ class TAPParser: explanation = explanation.strip() if explanation else None if directive is not None: directive = directive.upper() - if directive == 'SKIP': + if directive.startswith('SKIP'): if ok: yield self.Test(num, name, TestResult.SKIP, explanation) return |