diff options
author | Fangrui Song <maskray@google.com> | 2018-09-14 21:36:35 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-09-14 21:36:35 +0000 |
commit | 9851eafa0e0e7adde795a0913437e2c24055f3d6 (patch) | |
tree | 7ff0bc879f7e790e9606a22f034ebee17e4b2a89 | |
parent | 46945b9e9d86d66ae054c8ca6ad79b0cd0da8531 (diff) | |
download | bcm5719-llvm-9851eafa0e0e7adde795a0913437e2c24055f3d6.tar.gz bcm5719-llvm-9851eafa0e0e7adde795a0913437e2c24055f3d6.zip |
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
-rw-r--r-- | clang/test/Driver/output-file-cleanup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/Driver/output-file-cleanup.c b/clang/test/Driver/output-file-cleanup.c index e3f2bdbb2fb..a5ca3e546f5 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 |