From: Rafael Espindola Date: Sat, 13 Apr 2013 22:26:02 +0000 (+0000) Subject: Simplify test so that it is more portable. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67cd74ec17e6061d70d38d48b7c56ce448063f35;p=clang Simplify test so that it is more portable. I have checked that the test still fails when the "|| !P.isRegularFile()" from the original patch is removed. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179464 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; }