From: Hans Wennborg Date: Wed, 16 Jul 2014 16:29:00 +0000 (+0000) Subject: clang-cl: expand test coverage for "core" options X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a14d875523366f0983b15e341c8e318aff8616f;p=clang clang-cl: expand test coverage for "core" options git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@213170 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/cl-options.c b/test/Driver/cl-options.c index 216f505542..405f0b0512 100644 --- a/test/Driver/cl-options.c +++ b/test/Driver/cl-options.c @@ -294,9 +294,16 @@ // Accept "core" clang options. // (/Zs is for syntax-only) -// RUN: %clang_cl /Zs \ +// RUN: %clang_cl \ +// RUN: --driver-mode=cl \ +// RUN: -ferror-limit=10 \ // RUN: -fmsc-version=1800 \ -// RUN: -- %s 2>&1 +// RUN: -fno-strict-aliasing \ +// RUN: -fstrict-aliasing \ +// RUN: -mllvm -disable-llvm-optzns \ +// RUN: -msse2 \ +// RUN: -Wunused-variables \ +// RUN: /Zs -- %s 2>&1 void f() { }