[llvm-branch-commits] [compiler-rt] f0c008a - Revert "[sanitizer_common][test-only] Specify full path for sort executable i…"
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Dec 10 10:28:34 PST 2025
Author: Andrew Haberlandt
Date: 2025-12-10T10:28:30-08:00
New Revision: f0c008ab99b2125741685bd4f061fb6ff3cf2c6b
URL: https://github.com/llvm/llvm-project/commit/f0c008ab99b2125741685bd4f061fb6ff3cf2c6b
DIFF: https://github.com/llvm/llvm-project/commit/f0c008ab99b2125741685bd4f061fb6ff3cf2c6b.diff
LOG: Revert "[sanitizer_common][test-only] Specify full path for sort executable i…"
This reverts commit c5995e25ba6a32b839cefe86abf721f57f9bf615.
Added:
Modified:
compiler-rt/test/sanitizer_common/TestCases/Posix/popen.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/popen.cpp b/compiler-rt/test/sanitizer_common/TestCases/Posix/popen.cpp
index fdbdb2f788b04..6bf6255a697a1 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Posix/popen.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/popen.cpp
@@ -8,7 +8,7 @@
int main(void) {
// use a tool that produces
diff erent output than input to verify
// that everything worked correctly
- FILE *fp = popen("/usr/bin/sort", "w");
+ FILE *fp = popen("sort", "w");
assert(fp);
// verify that fileno() returns a meaningful descriptor (needed
More information about the llvm-branch-commits
mailing list