aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2016-09-09 01:32:47 +0000
committerVedant Kumar <vsk@apple.com>2016-09-09 01:32:47 +0000
commit935bf9a890e2530629aad332d0e3d709fd8013d5 (patch)
treee3eff8b449f10e4c5d40042f6a93a82d5348b2dd
parent5c04bd250e84ed67624896550b65236a9170efcc (diff)
downloadllvm-935bf9a890e2530629aad332d0e3d709fd8013d5.zip
llvm-935bf9a890e2530629aad332d0e3d709fd8013d5.tar.gz
llvm-935bf9a890e2530629aad332d0e3d709fd8013d5.tar.bz2
[llvm-cov] Speculate fix for a Windows-only test (NFC)
This test should have broken after r280896. Fix up the test case speculatively, since I don't have a way to test it. I wonder why I didn't get any angry bot emails about this. Maybe none of the win32 bots test llvm-cov? That could explain it, since the test says it 'REQUIRES: system-windows', which is restricted to win32 hosts. Also: why is 'system-windows' not defined for non-win32 Windows bots? llvm-svn: 281008
-rw-r--r--llvm/test/tools/llvm-cov/native_separators.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/test/tools/llvm-cov/native_separators.c b/llvm/test/tools/llvm-cov/native_separators.c
index e7659d7..4636b1d 100644
--- a/llvm/test/tools/llvm-cov/native_separators.c
+++ b/llvm/test/tools/llvm-cov/native_separators.c
@@ -15,15 +15,13 @@
// TEXT-INDEX: \tmp\native_separators.c
// HTML-INDEX: >tmp\native_separators.c</a>
-// HTML: <pre>Source: \tmp\native_separators.c</pre>
-// HTML: tools\llvm-cov\Inputs\native_separators.covmapping</pre>
+// HTML: <pre>Source: \tmp\native_separators.c (Binary: native_separators.covmapping)</pre>
int main() {}
// RUN: llvm-cov show %S/Inputs/native_separators.covmapping -instr-profile=%t.profdata -filename-equivalence %s -o %t.dir
// RUN: FileCheck -check-prefixes=TEXT -input-file=%t.dir/coverage/tmp/native_separators.c.txt %s
-// TEXT: {{^}}Source: \tmp\native_separators.c:{{$}}
-// TEXT: {{^}}Binary: {{.*}}tools\llvm-cov\Inputs\native_separators.covmapping:{{$}}
+// TEXT: Source: \tmp\native_separators.c (Binary: native_separators.covmapping)
// Re-purpose this file to test that "Go to first unexecuted line" feature.