Skip to content

Commit

Permalink
Add tests for -m32
Browse files Browse the repository at this point in the history
llvm-svn: 260394
  • Loading branch information
david-xl committed Feb 10, 2016
1 parent 4ce15ad commit ee195ca
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1 deletion.
5 changes: 5 additions & 0 deletions compiler-rt/test/profile/Linux/coverage_ctors.cpp
Expand Up @@ -2,6 +2,11 @@
// RUN: env LLVM_PROFILE_FILE=%t.profraw %run %t
// RUN: llvm-profdata merge -o %t.profdata %t.profraw
// RUN: llvm-cov show %t -instr-profile %t.profdata -filename-equivalence 2>&1 | FileCheck %s
// 32 bit testing.
// RUN: %clang_profgen -x c++ -std=c++11 -fuse-ld=gold -fcoverage-mapping -m32 -o %t.32 %s
// RUN: env LLVM_PROFILE_FILE=%t.32.profraw %run %t.32
// RUN: llvm-profdata merge -o %t.32.profdata %t.32.profraw
// RUN: llvm-cov show %t.32 -instr-profile %t.32.profdata -filename-equivalence 2>&1 | FileCheck %s

struct Base {
int B;
Expand Down
5 changes: 5 additions & 0 deletions compiler-rt/test/profile/Linux/coverage_dtor.cpp
Expand Up @@ -2,6 +2,11 @@
// RUN: env LLVM_PROFILE_FILE=%t.profraw %run %t
// RUN: llvm-profdata merge -o %t.profdata %t.profraw
// RUN: llvm-cov show %t -instr-profile %t.profdata -filename-equivalence 2>&1 | FileCheck %s
// 32 bit testing
// RUN: %clang -x c++ -fno-exceptions -std=c++11 -fuse-ld=gold -fprofile-instr-generate -fcoverage-mapping -m32 -o %t.32 %s
// RUN: env LLVM_PROFILE_FILE=%t.32.profraw %run %t.32
// RUN: llvm-profdata merge -o %t.32.profdata %t.32.profraw
// RUN: llvm-cov show %t.32 -instr-profile %t.32.profdata -filename-equivalence 2>&1 | FileCheck %s

int g = 100;
struct Base {
Expand Down
15 changes: 15 additions & 0 deletions compiler-rt/test/profile/Linux/coverage_shared.test
Expand Up @@ -14,3 +14,18 @@ RUN: llvm-profdata merge -o %t-shared.profdata %t-shared.profraw
RUN: llvm-cov show -instr-profile %t-shared.profdata %t.d/a.shared | FileCheck --check-prefix=COV %S/../Inputs/instrprof-dynamic-a.cpp
RUN: llvm-cov show -instr-profile %t-static.profdata %t-static | FileCheck --check-prefix=COV %S/../Inputs/instrprof-dynamic-a.cpp


RUN: %clang_profgen -fdata-sections -ffunction-sections -fcoverage-mapping -m32 -c -o %t.d/a.32.shared.o -fPIC %S/../Inputs/instrprof-dynamic-a.cpp
RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -fcoverage-mapping -m32 -o %t.d/a.32.shared -fPIC -shared %S/../Inputs/instrprof-dynamic-a.cpp
RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -m32 -o %t.32-shared -fPIC -rpath %t.d %t.d/a.32.shared %S/../Inputs/instrprof-dynamic-b.cpp %S/../Inputs/instrprof-dynamic-main.cpp

RUN: %clang_profgen -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections -m32 -o %t.32-static %t.d/a.32.shared.o %S/../Inputs/instrprof-dynamic-b.cpp %S/../Inputs/instrprof-dynamic-main.cpp

RUN: env LLVM_PROFILE_FILE=%t.32-static.profraw %run %t.32-static
RUN: env LLVM_PROFILE_FILE=%t.32-shared.profraw %run %t.32-shared

RUN: llvm-profdata merge -o %t.32-static.profdata %t.32-static.profraw
RUN: llvm-profdata merge -o %t.32-shared.profdata %t.32-shared.profraw

RUN: llvm-cov show -instr-profile %t.32-shared.profdata %t.d/a.32.shared | FileCheck --check-prefix=COV %S/../Inputs/instrprof-dynamic-a.cpp
RUN: llvm-cov show -instr-profile %t.32-static.profdata %t.32-static | FileCheck --check-prefix=COV %S/../Inputs/instrprof-dynamic-a.cpp
7 changes: 6 additions & 1 deletion compiler-rt/test/profile/Linux/coverage_test.cpp
Expand Up @@ -2,11 +2,16 @@
// RUN: env LLVM_PROFILE_FILE=%t.profraw %run %t
// RUN: llvm-profdata merge -o %t.profdata %t.profraw
// RUN: llvm-cov show %t -instr-profile %t.profdata -filename-equivalence 2>&1 | FileCheck %s
//
// Testing PIE
// RUN: %clang_profgen -fuse-ld=gold -O2 -fdata-sections -ffunction-sections -fPIE -pie -fprofile-instr-generate -fcoverage-mapping -Wl,--gc-sections -o %t.pie %s
// RUN: env LLVM_PROFILE_FILE=%t.pie.profraw %run %t.pie
// RUN: llvm-profdata merge -o %t.pie.profdata %t.pie.profraw
// RUN: llvm-cov show %t.pie -instr-profile %t.pie.profdata -filename-equivalence 2>&1 | FileCheck %s
// testing m32
// RUN: %clang_profgen -fuse-ld=gold -O2 -fdata-sections -ffunction-sections -fPIE -pie -fprofile-instr-generate -fcoverage-mapping -m32 -Wl,--gc-sections -o %t.32.pie %s
// RUN: env LLVM_PROFILE_FILE=%t.32.pie.profraw %run %t.32.pie
// RUN: llvm-profdata merge -o %t.32.pie.profdata %t.32.pie.profraw
// RUN: llvm-cov show %t.32.pie -instr-profile %t.32.pie.profdata -filename-equivalence 2>&1 | FileCheck %s

void foo(bool cond) { // CHECK: 1| [[@LINE]]|void foo(
if (cond) { // CHECK: 1| [[@LINE]]| if (cond) {
Expand Down

0 comments on commit ee195ca

Please sign in to comment.