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 gcc toolset using a mock of gcc
10
11from TestToolset import test_toolset
12
13test_toolset("gcc", "4.8.3", [
14    ["target-os=linux"],
15    ["target-os=linux", "release"],
16    ["target-os=linux", "threading=multi"],
17    ["target-os=linux", "link=static"],
18    ["target-os=linux", "link=static", "runtime-link=static"],
19    ["target-os=linux", "cxxstd=latest"]])
20
21test_toolset("gcc", "4.2.1", [
22    ["target-os=darwin"],
23    ["target-os=darwin", "release"],
24    ["target-os=darwin", "threading=multi"],
25    ["target-os=darwin", "link=static"],
26    ["target-os=darwin", "link=static", "runtime-link=static"]])
27