From 9a14d875523366f0983b15e341c8e318aff8616f Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Wed, 16 Jul 2014 16:29:00 +0000 Subject: [PATCH] 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 --- test/Driver/cl-options.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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() { } -- 2.50.1