[compiler-rt] 53e62c6 - [compiler-rt][profile][tests][NFC] Avoid using a.out from PATH (#136465)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 21 16:34:37 PDT 2025
Author: Hubert Tong
Date: 2025-04-21T19:34:33-04:00
New Revision: 53e62c654a3fe181686f1ccd960d2e2b981e4313
URL: https://github.com/llvm/llvm-project/commit/53e62c654a3fe181686f1ccd960d2e2b981e4313
DIFF: https://github.com/llvm/llvm-project/commit/53e62c654a3fe181686f1ccd960d2e2b981e4313.diff
LOG: [compiler-rt][profile][tests][NFC] Avoid using a.out from PATH (#136465)
Fix use of `a.out` from the PATH by specifying `./a.out`.
Added:
Modified:
compiler-rt/test/profile/AIX/pgo-lto-bcdtor-function-section.test
Removed:
################################################################################
diff --git a/compiler-rt/test/profile/AIX/pgo-lto-bcdtor-function-section.test b/compiler-rt/test/profile/AIX/pgo-lto-bcdtor-function-section.test
index 36170716b56c2..cc351ef4e0acd 100755
--- a/compiler-rt/test/profile/AIX/pgo-lto-bcdtor-function-section.test
+++ b/compiler-rt/test/profile/AIX/pgo-lto-bcdtor-function-section.test
@@ -15,22 +15,22 @@ int main() { return foo() - 3; }
// RUN: %clang_pgogen -O2 -c -fno-function-sections main.c
//
// RUN: %clang_pgogen -Wl,-bcdtors:all foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=BOTH
//
// RUN: %clang_pgogen -Wl,-bcdtors:mbr foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=BOTH
// RUN: %clang_pgogen -O2 -c -ffunction-sections foo.c
// RUN: %clang_pgogen -O2 -c -ffunction-sections main.c
//
// RUN: %clang_pgogen -Wl,-bcdtors:all foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=BOTH
//
// RUN: %clang_pgogen -Wl,-bcdtors:mbr foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=BOTH
// ## no PGO at compile step, but PGO at link step.
@@ -38,11 +38,11 @@ int main() { return foo() - 3; }
// RUN: %clang -O2 -c main.c
//
// RUN: %clang_pgogen -Wl,-bcdtors:all foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=NONE
//
// RUN: %clang_pgogen -Wl,-bcdtors:mbr foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=NONE
// # LTO, with and without function-sections, and all permutations of -bcdtors
@@ -51,44 +51,44 @@ int main() { return foo() - 3; }
// RUN: %clang -O2 -c -flto main.c
//
// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:all foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=NONE
//
// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:mbr foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=NONE
//
// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:all foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=NONE
//
// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:mbr foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=NONE
// ## LTO one file, PGO at compile and link
// RUN: %clang -O2 -c -fno-function-sections foo.c
// RUN: %clang_pgogen -O2 -c -flto main.c
// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:all foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=MAIN
// RUN: %clang -O2 -c -flto foo.c
// RUN: %clang_pgogen -O2 -c -fno-function-sections main.c
// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:mbr foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=MAIN
// RUN: %clang -O2 -c -flto foo.c
// RUN: %clang_pgogen -O2 -c -ffunction-sections main.c
// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:all foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=MAIN
// RUN: %clang -O2 -c -ffunction-sections foo.c
// RUN: %clang_pgogen -O2 -c -flto main.c
// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:mbr foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=MAIN
// ## LTO and PGO both files
@@ -96,19 +96,19 @@ int main() { return foo() - 3; }
// RUN: %clang_pgogen -O2 -c -flto main.c
//
// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:all foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=BOTH
//
// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:mbr foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=BOTH
//
// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:all foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=BOTH
//
// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:mbr foo.o main.o
-// RUN: rm -f default* && %run a.out
+// RUN: rm -f default* && %run ./a.out
// RUN: llvm-profdata show --all-functions default* | FileCheck %s -check-prefix=BOTH
// BOTH-DAG: foo:
More information about the llvm-commits
mailing list