]> granicus.if.org Git - clang/commitdiff
Sidestep false positive due to a matching git repository name
authorRoger Ferrer Ibanez <rofirrim@gmail.com>
Mon, 5 Aug 2019 10:09:06 +0000 (10:09 +0000)
committerRoger Ferrer Ibanez <rofirrim@gmail.com>
Mon, 5 Aug 2019 10:09:06 +0000 (10:09 +0000)
I have failures in this test because the grep @b gets confused by the
clang version including a repository name like this

!1 = !{!"clang version 10.0.0 (git@build-machine:llvm/llvm-monorepo.git fe958c0e8c89ec663c8e551936778e2cbb460154)"}

I considered something like grep -w but my understanding of the manpages
was that that isn't super portable. So I think it is easier to make
clang not to output that metadata using -fno-ident.

Differential Revision: https://reviews.llvm.org/D65635

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@367826 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/constant-comparison.c

index 371cb179f9015ef30658dd6dc578b63e7c877ceb..e2b3f1a2a58fe8a2f7c6f134b38b3e2bbd5652db 100644 (file)
@@ -1,5 +1,5 @@
 // RUN: %clang_cc1 -emit-llvm %s -o - 2>&1 | not grep warning
-// RUN: %clang_cc1 -emit-llvm %s -o - | grep @b | count 1
+// RUN: %clang_cc1 -fno-ident -emit-llvm %s -o - | grep @b | count 1
 
 int a, b;
 int *c1 = 1 < 2 ? &a : &b;