aboutsummaryrefslogtreecommitdiffstats
path: root/community/llvm5/fix-too-strict-gtest-banner-check.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/llvm5/fix-too-strict-gtest-banner-check.patch')
-rw-r--r--community/llvm5/fix-too-strict-gtest-banner-check.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/community/llvm5/fix-too-strict-gtest-banner-check.patch b/community/llvm5/fix-too-strict-gtest-banner-check.patch
deleted file mode 100644
index 412888e420..0000000000
--- a/community/llvm5/fix-too-strict-gtest-banner-check.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/utils/lit/lit/formats/googletest.py
-+++ b/utils/lit/lit/formats/googletest.py
-@@ -42,7 +42,7 @@
- for ln in output.splitlines(False): # Don't keep newlines.
- ln = lit.util.to_string(ln)
-
-- if 'Running main() from gtest_main.cc' in ln:
-+ if ln.startswith('Running main() from '):
- # Upstream googletest prints this to stdout prior to running
- # tests. LLVM removed that print statement in r61540, but we
- # handle it here in case upstream googletest is being used.