aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2024-09-22 16:22:25 -0700
committerVitaly Buka <vitalybuka@google.com>2024-09-22 16:22:25 -0700
commitf5ec00b79ba63eec6a39a5cc04cbdba58b0c01bf (patch)
tree5195d55627e26546dc04a001324c240c751cfb5d
parent397b96aa87d1546e2b2fd34a7622fe6f4194776e (diff)
downloadllvm-f5ec00b79ba63eec6a39a5cc04cbdba58b0c01bf.zip
llvm-f5ec00b79ba63eec6a39a5cc04cbdba58b0c01bf.tar.gz
llvm-f5ec00b79ba63eec6a39a5cc04cbdba58b0c01bf.tar.bz2
[NFC][sanitizer] Remove leftover from previous run
-rw-r--r--compiler-rt/test/sanitizer_common/TestCases/Posix/variadic-open.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/variadic-open.cpp b/compiler-rt/test/sanitizer_common/TestCases/Posix/variadic-open.cpp
index 8ac5596..62fcab0 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Posix/variadic-open.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/variadic-open.cpp
@@ -1,4 +1,5 @@
// RUN: %clangxx -O1 %s -o %t
+// RUN: rm -rf %t.tmp
// RUN: %run %t 1
// RUN: %run %t 2
@@ -26,7 +27,6 @@ int main(int argc, char *argv[]) {
assert(argc == 2);
char buff[10000];
sprintf(buff, "%s.tmp", argv[0]);
-
if (atoi(argv[1]) == 1) {
unlink(buff);
test(buff, O_RDWR | O_CREAT);