forked from OSchip/llvm-project
[clang] fix linker executable path in test
A previous patch (https://reviews.llvm.org/D132810) introduced a test that fails on systems where the linker executable (`ld`) has a `.exe` extension. This patch updates the regex in the test so that lit can look for both `ld` as well as `ld.exe`. Reviewed By: stella.stamenova Differential Revision: https://reviews.llvm.org/D133773
This commit is contained in:
parent
da459043f8
commit
f1848b0a0e
|
@ -3,7 +3,7 @@
|
||||||
// NO_CF: "-cc1"
|
// NO_CF: "-cc1"
|
||||||
// NO_CF-NOT: "-cfguard"
|
// NO_CF-NOT: "-cfguard"
|
||||||
// NO_CF-NOT: "-cfguard-no-checks"
|
// NO_CF-NOT: "-cfguard-no-checks"
|
||||||
// NO_CF-NEXT: ld"
|
// NO_CF-NEXT: ld{{(.lld)?}}{{(.exe)?}}"
|
||||||
// NO_CF-NOT: "--guard-cf"
|
// NO_CF-NOT: "--guard-cf"
|
||||||
// DEFAULT-NOT: "--no-guard-cf"
|
// DEFAULT-NOT: "--no-guard-cf"
|
||||||
// GUARD_NONE-SAME: "--no-guard-cf"
|
// GUARD_NONE-SAME: "--no-guard-cf"
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
// RUN: %clang --target=x86_64-w64-windows-gnu -### %s -mguard=cf 2>&1 | FileCheck -check-prefix=GUARD_CF %s
|
// RUN: %clang --target=x86_64-w64-windows-gnu -### %s -mguard=cf 2>&1 | FileCheck -check-prefix=GUARD_CF %s
|
||||||
// GUARD_CF: "-cc1"
|
// GUARD_CF: "-cc1"
|
||||||
// GUARD_CF-SAME: "-cfguard"
|
// GUARD_CF-SAME: "-cfguard"
|
||||||
// GUARD_CF-NEXT: ld"
|
// GUARD_CF-NEXT: ld{{(.lld)?}}{{(.exe)?}}"
|
||||||
// GUARD_CF-SAME: "--guard-cf"
|
// GUARD_CF-SAME: "--guard-cf"
|
||||||
// GUARD_CF-NOT: "--no-guard-cf"
|
// GUARD_CF-NOT: "--no-guard-cf"
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
// GUARD_NOCHECKS-NOT: "-cfguard"
|
// GUARD_NOCHECKS-NOT: "-cfguard"
|
||||||
// GUARD_NOCHECKS-SAME: "-cfguard-no-checks"
|
// GUARD_NOCHECKS-SAME: "-cfguard-no-checks"
|
||||||
// GUARD_NOCHECKS-NOT: "-cfguard"
|
// GUARD_NOCHECKS-NOT: "-cfguard"
|
||||||
// GUARD_NOCHECKS-NEXT: ld"
|
// GUARD_NOCHECKS-NEXT: ld{{(.lld)?}}{{(.exe)?}}"
|
||||||
// GUARD_NOCHECKS-SAME: "--guard-cf"
|
// GUARD_NOCHECKS-SAME: "--guard-cf"
|
||||||
// GUARD_NOCHECKS-NOT: "--no-guard-cf"
|
// GUARD_NOCHECKS-NOT: "--no-guard-cf"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue