• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/python
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_linux toolset using a mock of clang
10
11from TestToolset import test_toolset
12
13test_toolset("clang-linux", "3.9.0", [
14    ["target-os=linux"],
15    ["target-os=linux", "release", "strip=on"],
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", "architecture=x86", "address-model=32"]])
20