From f07d05eccd497f340a0322473e37b7120c0ae3f9 Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Mon, 12 Dec 2016 23:03:28 +0000 Subject: [PATCH] [llvm-config] Fix cflags test looking for "error" This test is (I think) actually trying to make sure no errors are printed, but it hits on the string "error" in flags. llvm-svn: 289484 --- llvm/test/tools/llvm-config/cflags.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/tools/llvm-config/cflags.test b/llvm/test/tools/llvm-config/cflags.test index 5e977cb14ed5..ef3e486bd968 100644 --- a/llvm/test/tools/llvm-config/cflags.test +++ b/llvm/test/tools/llvm-config/cflags.test @@ -3,5 +3,5 @@ RUN: llvm-config --cppflags 2>&1 | FileCheck %s RUN: llvm-config --cxxflags 2>&1 | FileCheck %s CHECK: -I CHECK: {{[/\\]}}include -CHECK-NOT: error +CHECK-NOT: error: CHECK-NOT: warning