From: Alp Toker Date: Sat, 21 Dec 2013 19:11:31 +0000 (+0000) Subject: Relax tab check into a whitespace check to fix the test in r197869 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=68545899c7c5f426131d81028d1bbe75f8366ede;p=oota-llvm.git 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 --- 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