You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.9 KiB
38 lines
1.9 KiB
// Test coverage ld flags.
|
|
//
|
|
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
|
// RUN: -target i386-unknown-linux --coverage \
|
|
// RUN: -resource-dir=%S/Inputs/resource_dir \
|
|
// RUN: --sysroot=%S/Inputs/basic_linux_tree \
|
|
// RUN: | FileCheck --check-prefix=CHECK-LINUX-I386 %s
|
|
//
|
|
// CHECK-LINUX-I386: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
|
|
// CHECK-LINUX-I386: "{{.*}}/Inputs/resource_dir{{/|\\\\}}lib{{/|\\\\}}linux{{/|\\\\}}libclang_rt.profile-i386.a" {{.*}} "-lc"
|
|
//
|
|
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
|
// RUN: -target x86_64-unknown-linux --coverage \
|
|
// RUN: -resource-dir=%S/Inputs/resource_dir \
|
|
// RUN: --sysroot=%S/Inputs/basic_linux_tree \
|
|
// RUN: | FileCheck --check-prefix=CHECK-LINUX-X86-64 %s
|
|
//
|
|
// CHECK-LINUX-X86-64: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
|
|
// CHECK-LINUX-X86-64: "{{.*}}/Inputs/resource_dir{{/|\\\\}}lib{{/|\\\\}}linux{{/|\\\\}}libclang_rt.profile-x86_64.a" {{.*}} "-lc"
|
|
//
|
|
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
|
// RUN: -target x86_64-unknown-freebsd --coverage \
|
|
// RUN: -resource-dir=%S/Inputs/resource_dir \
|
|
// RUN: --sysroot=%S/Inputs/basic_freebsd64_tree \
|
|
// RUN: | FileCheck --check-prefix=CHECK-FREEBSD-X86-64 %s
|
|
//
|
|
// CHECK-FREEBSD-X86-64: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
|
|
// CHECK-FREEBSD-X86-64: "{{.*}}/Inputs/resource_dir{{/|\\\\}}lib{{/|\\\\}}freebsd{{/|\\\\}}libclang_rt.profile-x86_64.a"
|
|
//
|
|
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
|
// RUN: -target arm-linux-androideabi --coverage \
|
|
// RUN: -resource-dir=%S/Inputs/resource_dir \
|
|
// RUN: --sysroot=%S/Inputs/basic_android_tree/sysroot \
|
|
// RUN: | FileCheck --check-prefix=CHECK-ANDROID-ARM %s
|
|
//
|
|
// CHECK-ANDROID-ARM: "{{(.*[^.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
|
|
// CHECK-ANDROID-ARM: "{{.*}}/Inputs/resource_dir{{/|\\\\}}lib{{/|\\\\}}linux{{/|\\\\}}libclang_rt.profile-arm-android.a"
|