xref: /llvm-project/llvm/test/Other/FileCheck-space.txt (revision ef878a832b96c19c9042bce379023e7905c5c903)
1RUN: printf "a\nb" | FileCheck %s -check-prefix=TEST1
2RUN: echo oo | FileCheck %s -check-prefix=TEST2
3
4Check that CHECK-NEXT without a space after the colon works.
5TEST1:a
6TEST1-NEXT:b
7
8Check that CHECK-NOT without a space after the colon works.
9TEST2-NOT:foo
10