From 9851eafa0e0e7adde795a0913437e2c24055f3d6 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Fri, 14 Sep 2018 21:36:35 +0000 Subject: [PATCH] test/Driver/output-file-cleanup.c: delete non-readable temporary file %t-dir/2.c made tools (rsync, ripgrep, ...) sad (EACCES warning). llvm-svn: 342290 --- clang/test/Driver/output-file-cleanup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/test/Driver/output-file-cleanup.c b/clang/test/Driver/output-file-cleanup.c index e3f2bdbb2fb8..a5ca3e546f53 100644 --- a/clang/test/Driver/output-file-cleanup.c +++ b/clang/test/Driver/output-file-cleanup.c @@ -41,3 +41,4 @@ invalid C code // RUN: not %clang -S %t-dir/1.c %t-dir/2.c // RUN: test -f %t-dir/1.s // RUN: test ! -f %t-dir/2.s +// RUN: rm -f %t-dir/2.c