diff options
-rw-r--r-- | test/Driver/output-file-is-dir.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/Driver/output-file-is-dir.c b/test/Driver/output-file-is-dir.c index 605373159e..042ae3d40c 100644 --- a/test/Driver/output-file-is-dir.c +++ b/test/Driver/output-file-is-dir.c @@ -1,8 +1,6 @@ -// XFAIL: hexagon // RUN: rm -rf %t.dir -// RUN: mkdir -p %t.dir/a.out -// RUN: cd %t.dir && not %clang %s -// RUN: test -d %t.dir/a.out -// REQUIRES: shell +// RUN: mkdir -p %t.dir +// RUN: not %clang %s -c -emit-llvm -o %t.dir +// RUN: test -d %t.dir int main() { return 0; } |