[compiler-rt] f5ec00b - [NFC][sanitizer] Remove leftover from previous run

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Sun Sep 22 16:23:26 PDT 2024


Author: Vitaly Buka
Date: 2024-09-22T16:22:25-07:00
New Revision: f5ec00b79ba63eec6a39a5cc04cbdba58b0c01bf

URL: https://github.com/llvm/llvm-project/commit/f5ec00b79ba63eec6a39a5cc04cbdba58b0c01bf
DIFF: https://github.com/llvm/llvm-project/commit/f5ec00b79ba63eec6a39a5cc04cbdba58b0c01bf.diff

LOG: [NFC][sanitizer] Remove leftover from previous run

Added: 
    

Modified: 
    compiler-rt/test/sanitizer_common/TestCases/Posix/variadic-open.cpp

Removed: 
    


################################################################################
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 8ac5596791a9e0..62fcab0316f78f 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);


        


More information about the llvm-commits mailing list