From: Fangrui Song Date: Fri, 14 Sep 2018 21:36:35 +0000 (+0000) Subject: test/Driver/output-file-cleanup.c: delete non-readable temporary file X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74afe0c6779c6ae024d076636230605f92675f39;p=clang test/Driver/output-file-cleanup.c: delete non-readable temporary file %t-dir/2.c made tools (rsync, ripgrep, ...) sad (EACCES warning). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@342290 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/output-file-cleanup.c b/test/Driver/output-file-cleanup.c index e3f2bdbb2f..a5ca3e546f 100644 --- a/test/Driver/output-file-cleanup.c +++ b/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