From 68545899c7c5f426131d81028d1bbe75f8366ede Mon Sep 17 00:00:00 2001 From: Alp Toker Date: Sat, 21 Dec 2013 19:11:31 +0000 Subject: [PATCH] Relax tab check into a whitespace check to fix the test in r197869 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197870 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/TableGen/ValidIdentifiers.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TableGen/ValidIdentifiers.td b/test/TableGen/ValidIdentifiers.td index 899ae0e3868..039d887cf3e 100644 --- a/test/TableGen/ValidIdentifiers.td +++ b/test/TableGen/ValidIdentifiers.td @@ -1,5 +1,5 @@ // Ensure that anonymous names are valid identifiers via the ctags index -// RUN: llvm-tblgen -gen-ctags %s | grep -v '^!' | not grep -viE '^[a-z_][a-z0-9_]*\t' +// RUN: llvm-tblgen -gen-ctags %s | grep -v '^!' | not grep -viE '^[a-z_][a-z0-9_]*\s' // Test validation // RUN: llvm-tblgen -gen-ctags %s | grep '^anonymous' > /dev/null // XFAIL: vg_leak -- 2.34.1