diff options
-rw-r--r-- | clang/test/Frontend/plugins.c | 1 | ||||
-rw-r--r-- | clang/test/lit.cfg | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/Frontend/plugins.c b/clang/test/Frontend/plugins.c index 8117f72fa7a..ab5d62338ed 100644 --- a/clang/test/Frontend/plugins.c +++ b/clang/test/Frontend/plugins.c @@ -1,4 +1,5 @@ // RUN: %clang_cc1 -load %llvmshlibdir/PrintFunctionNames%pluginext -plugin print-fns %s 2>&1 | FileCheck %s +// RUN: %clang_cl -Xclang -load -Xclang %llvmshlibdir/PrintFunctionNames%pluginext -Xclang -plugin -Xclang print-fns %s 2>&1 | FileCheck %s // REQUIRES: plugins, examples // CHECK: top-level-decl: "x" diff --git a/clang/test/lit.cfg b/clang/test/lit.cfg index e2166342685..dddab3ec895 100644 --- a/clang/test/lit.cfg +++ b/clang/test/lit.cfg @@ -196,7 +196,7 @@ if not lit_config.quiet: # Plugins (loadable modules) # TODO: This should be supplied by Makefile or autoconf. -if sys.platform in ['win32', 'cygwin']: +if sys.platform in ['cygwin']: has_plugins = (config.enable_shared == 1) else: has_plugins = True |