summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang/test/Frontend/plugins.c1
-rw-r--r--clang/test/lit.cfg2
2 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/Frontend/plugins.c b/clang/test/Frontend/plugins.c
index cd3717cd2d5..8117f72fa7a 100644
--- a/clang/test/Frontend/plugins.c
+++ b/clang/test/Frontend/plugins.c
@@ -1,5 +1,4 @@
// RUN: %clang_cc1 -load %llvmshlibdir/PrintFunctionNames%pluginext -plugin print-fns %s 2>&1 | FileCheck %s
-// RUN: %clang_cl -c -Xclang -load -Xclang %llvmshlibdir/PrintFunctionNames%pluginext -Xclang -plugin -Xclang print-fns -Tc %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 dddab3ec895..e2166342685 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 ['cygwin']:
+if sys.platform in ['win32', 'cygwin']:
has_plugins = (config.enable_shared == 1)
else:
has_plugins = True
OpenPOWER on IntegriCloud