1#!/usr/local/bin/python3.8
2#
3# Copyright 2017 Steven Watanabe
4#
5# Distributed under the Boost Software License, Version 1.0.
6# (See accompanying file LICENSE_1_0.txt or copy at
7# http://www.boost.org/LICENSE_1_0.txt)
8
9# validates the clang-darwin toolset using a mock of clang
10
11from TestToolset import test_toolset
12
13test_toolset("clang-darwin", "3.9.0", [
14    ["target-os=darwin"],
15    ["target-os=darwin", "release", "strip=on", "linkflags=-v"],
16    ["target-os=darwin", "threading=multi"],
17    ["target-os=darwin", "link=static"],
18    ["target-os=darwin", "link=static", "runtime-link=static"],
19    ["target-os=darwin", "architecture=x86", "address-model=32"],
20    ["target-os=darwin", "cxxstd=latest"]])
21