mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
335ddecaa6
Failing bot: http://lab.llvm.org:8011/builders/llvm-clang-x86_64-expensive-checks-win/builds/4791 This looks like another stderr redirection issue. llvm-svn: 312975
17 lines
597 B
C
17 lines
597 B
C
// RUN: llvm-cov show -instr-profile %S/Inputs/ifdef.profdata %S/Inputs/ifdef.covmapping -dump -path-equivalence=/tmp,%S %s > %t.out 2> %t.err.out
|
|
// RUN: FileCheck %s -input-file %t.out -check-prefix=LINE
|
|
// RUN: FileCheck %s -input-file %t.err.out -check-prefix=HIGHLIGHT
|
|
|
|
|
|
int main() {
|
|
if (0) { // LINE: [[@LINE]]|{{ +}}1|
|
|
#if 0 // LINE-NEXT: [[@LINE]]|{{ +}}|
|
|
#endif // LINE-NEXT: [[@LINE]]|{{ +}}|
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
// HIGHLIGHT: Highlighted line [[@LINE-7]], 10 -> ?
|
|
// HIGHLIGHT-NEXT: Highlighted line [[@LINE-7]], 1 -> 1
|
|
// HIGHLIGHT-NEXT: Highlighted line [[@LINE-6]], 1 -> 4
|