1# Boost.Format Library test Jamfile 2# 3# Copyright (c) 2003 Samuel Krempp 4# 5# Distributed under the Boost Software License, Version 1.0. (See accompany- 6# ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 8import testing ; 9 10test-suite "format" 11 : [ run format_test1.cpp ] 12 [ run format_test1.cpp : : : <toolset>msvc:<cxxflags>"/FIWindows.h" : format_test1_windows_h ] 13 [ run format_test2.cpp ] 14 [ run format_test2.cpp : : : <toolset>msvc:<cxxflags>"/FIWindows.h" : format_test2_windows_h ] 15 [ run format_test3.cpp ] 16 [ run format_test3.cpp : : : <toolset>msvc:<cxxflags>"/FIWindows.h" : format_test3_windows_h ] 17 [ run format_test_enum.cpp : : : <toolset>clang:<cxxflags>-Wno-unnamed-type-template-args ] 18 [ run format_test_exceptions.cpp ] 19 [ run format_test_wstring.cpp ] 20 ;