From: Hans Wennborg Date: Tue, 12 Jan 2016 23:31:58 +0000 (+0000) Subject: Follow-up to r257537: add test that majnemer asked about X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=49b730bd1660711515286c2b2a67c743154a59bd;p=clang Follow-up to r257537: add test that majnemer asked about git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@257541 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/cl-options.c b/test/Driver/cl-options.c index c928e64f8f..c5985a9c2b 100644 --- a/test/Driver/cl-options.c +++ b/test/Driver/cl-options.c @@ -14,13 +14,14 @@ // C_P: "-E" // C_P: "-C" -// RUN: %clang_cl /Dfoo=bar /D bar=baz /DMYDEF#value /DMYDEF2=foo#bar /DMYDEF3#a=b \ +// RUN: %clang_cl /Dfoo=bar /D bar=baz /DMYDEF#value /DMYDEF2=foo#bar /DMYDEF3#a=b /DMYDEF4# \ // RUN: -### -- %s 2>&1 | FileCheck -check-prefix=D %s // D: "-D" "foo=bar" // D: "-D" "bar=baz" // D: "-D" "MYDEF=value" // D: "-D" "MYDEF2=foo#bar" // D: "-D" "MYDEF3=a=b" +// D: "-D" "MYDEF4=" // RUN: %clang_cl /E -### -- %s 2>&1 | FileCheck -check-prefix=E %s // E: "-E"