• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Boost.Flyweight tests Jamfile
2#
3# Copyright 2006-2014 Joaqu�n M L�pez Mu�oz.
4# Distributed under the Boost Software License, Version 1.0.
5# (See accompanying file LICENSE_1_0.txt or copy at
6# http://www.boost.org/LICENSE_1_0.txt)
7#
8# See http://www.boost.org/libs/flyweight for library home page.
9
10project
11    : requirements
12      <os>LINUX:<threading>multi
13    ;
14
15test-suite "flyweight" :
16    [ run test_assoc_cont_factory.cpp test_assoc_cont_fact_main.cpp ]
17    [ run test_basic.cpp              test_basic_main.cpp           ]
18    [ run test_custom_factory.cpp     test_custom_factory_main.cpp  ]
19    [ run test_init.cpp               test_init_main.cpp            ]
20    [ run test_intermod_holder.cpp    test_intermod_holder_main.cpp
21          intermod_holder_dll
22        : # command line
23        : # input files
24        : # requirements
25          <threading>multi                                          ]
26    [ run test_multictor.cpp          test_multictor_main.cpp       ]
27    [ run test_no_locking.cpp         test_no_locking_main.cpp      ]
28    [ run test_no_tracking.cpp        test_no_tracking_main.cpp     ]
29    [ run test_serialization.cpp      test_serialization_main.cpp
30          /boost/serialization//boost_serialization/<link>static    ]
31    [ run test_set_factory.cpp        test_set_factory_main.cpp     ]
32    ;
33
34lib intermod_holder_dll : intermod_holder_dll.cpp :
35    <link>shared
36    <define>BOOST_FLYWEIGHT_TEST_INTERMOD_HOLDER_DLL_SOURCE=1 ;
37