summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/test/toolset_msvc.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/tools/build/test/toolset_msvc.py')
-rw-r--r--src/boost/tools/build/test/toolset_msvc.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/boost/tools/build/test/toolset_msvc.py b/src/boost/tools/build/test/toolset_msvc.py
new file mode 100644
index 000000000..9dc43a156
--- /dev/null
+++ b/src/boost/tools/build/test/toolset_msvc.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+#
+# Copyright 2022 Nikita Kniazev
+#
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE.txt or copy at
+# https://www.bfgroup.xyz/b2/LICENSE.txt)
+
+from TestToolset import test_toolset
+
+test_toolset("msvc", "14.3", [
+ ["target-os=windows"],
+ ["target-os=windows", "release"],
+ ["target-os=windows", "threading=single"],
+ ["target-os=windows", "link=static"],
+ ["target-os=windows", "link=static", "runtime-link=static"],
+ ["target-os=windows", "windows-api=store"],
+ ["target-os=windows", "windows-api=phone"],
+])