xref: /aosp_15_r20/external/llvm/test/Other/FileCheck-space.txt (revision 9880d6810fe72a1726cb53787c6711e909410d58)
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