Add InvalidContext to update_test.py.
authorMichael Kruse <llvm@meinersbur.de>
Thu, 14 Apr 2016 15:22:04 +0000 (15:22 +0000)
committerMichael Kruse <llvm@meinersbur.de>
Thu, 14 Apr 2016 15:22:04 +0000 (15:22 +0000)
This allows the test update script to add 'Invalid Context:' to test
cases. Enable with --check-include=InvalidContext.

llvm-svn: 266322

polly/test/update_check.py

index 7350f54..168f3a9 100644 (file)
@@ -95,6 +95,10 @@ def classyfier1(lines):
             yield  {'AssumedContext'}
             line = i.__next__()
             yield  {'AssumedContext'}
+        elif line == '    Invalid Context:':
+            yield  {'InvalidContext'}
+            line = i.__next__()
+            yield  {'InvalidContext'}
         elif line == '    Boundary Context:':
             yield  {'BoundaryContext'}
             line = i.__next__()