From 5466b7cbbb16acd016c57023cf4560296a1c8de1 Mon Sep 17 00:00:00 2001 From: Edwin Vane Date: Thu, 25 Jul 2013 20:20:20 +0000 Subject: [PATCH] cpp11-migrate: Tweak lit tests to avoid false negatives Recent failures on a freebsd buildbot indicated a weakness in the Reformatting.cpp lit test. Tweaking the test to avoid false negatives and hopefully make the buildbot happy. llvm-svn: 187153 --- clang-tools-extra/test/cpp11-migrate/Core/Reformatting.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/clang-tools-extra/test/cpp11-migrate/Core/Reformatting.cpp b/clang-tools-extra/test/cpp11-migrate/Core/Reformatting.cpp index d83f89db60d1..a98d1e2fb0d0 100644 --- a/clang-tools-extra/test/cpp11-migrate/Core/Reformatting.cpp +++ b/clang-tools-extra/test/cpp11-migrate/Core/Reformatting.cpp @@ -1,6 +1,7 @@ // RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp -// RUN: not cpp11-migrate -format-style=FOO -use-auto %t.cpp -- -std=c++11 -// RUN: not cpp11-migrate -format-style=/tmp/ -use-auto %t.cpp -- -std=c++11 +// RUN: not cpp11-migrate -format-style=non_existent_file.yaml -use-auto %t.cpp -- -std=c++11 +// RUN: touch %T/non_format_config.yaml +// RUN: not cpp11-migrate -format-style=%T/non_format_config.yaml -use-auto %t.cpp -- -std=c++11 // RUN: cpp11-migrate -format-style=LLVM -use-auto %t.cpp -- -std=c++11 // RUN: FileCheck --strict-whitespace -input-file=%t.cpp %s