diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-07-02 23:11:27 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-07-02 23:11:27 +0000 |
commit | 7007c07506eb41da084deba512f54bf8bf0059c3 (patch) | |
tree | 6c1d62ed459c0f4f7e403d1b3d17748b42824c5a | |
parent | bbe334142b38d2f9dad3ae2eb7b332c54a5b2cc1 (diff) |
test/Driver/crash-report.c: don't fail if there are no files left behind by a previous run of this test!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159615 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Driver/crash-report.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Driver/crash-report.c b/test/Driver/crash-report.c index 75340035dd..013877c551 100644 --- a/test/Driver/crash-report.c +++ b/test/Driver/crash-report.c @@ -1,4 +1,4 @@ -// RUN: rm %T/crash-report-*.c %T/crash-report-*.sh +// RUN: rm -f %T/crash-report-*.c %T/crash-report-*.sh // RUN: TMP=%T %clang -fsyntax-only %s -DFOO=BAR 2>&1 | FileCheck %s // RUN: FileCheck --check-prefix=CHECKSRC %s < %T/crash-report-*.c // RUN: FileCheck --check-prefix=CHECKSH %s < %T/crash-report-*.sh |