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 darwin toolset using a mock of gcc
10
11from TestToolset import test_toolset
12
13test_toolset("darwin", "4.2.1", [
14    ["target-os=darwin"],
15    ["target-os=darwin", "release", "strip=on"],
16    ["target-os=darwin", "threading=multi"],
17    ["target-os=darwin", "link=static"],
18    ["target-os=darwin", "link=static", "runtime-link=static"],
19# Address-model handling is quite broken
20#    ["target-os=darwin", "architecture=x86", "address-model=32"]
21])
22