~ubuntu-branches/ubuntu/wily/bombono-dvd/wily

« back to all changes in this revision

Viewing changes to libs/boost-lib/libs/format/test/Jamfile

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-03-12 08:42:05 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100312084205-kugmzrqqv7zm3k7n
Tags: upstream-0.5.5
ImportĀ upstreamĀ versionĀ 0.5.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#  Boost.Bind Library test Jamfile
 
2
#
 
3
#  Copyright (c) 2003 Samuel Krempp
 
4
#
 
5
#  Permission to copy, use, modify, sell and distribute this software
 
6
#  is granted provided this copyright notice appears in all copies.
 
7
#  This software is provided "as is" without express or implied
 
8
#  warranty, and with no claim as to its suitability for any purpose.
 
9
 
 
10
subproject libs/format/test ;
 
11
 
 
12
import testing ;
 
13
 
 
14
# Make tests run by default.
 
15
DEPENDS all : test ;
 
16
 
 
17
{
 
18
 
 
19
test-suite "format"
 
20
   :    [  run format_test1.cpp 
 
21
                <lib>../../../libs/test/build/boost_test_exec_monitor
 
22
              : # args
 
23
              : # input files
 
24
              : std::locale-support
 
25
        ]
 
26
 
 
27
        [ run format_test2.cpp 
 
28
                <lib>../../../libs/test/build/boost_test_exec_monitor
 
29
              : # args
 
30
              : # input files
 
31
              : std::locale-support
 
32
        ]
 
33
 
 
34
        [ run format_test3.cpp 
 
35
                <lib>../../../libs/test/build/boost_test_exec_monitor
 
36
              : # args
 
37
              : # input files
 
38
              : std::locale-support
 
39
        ]
 
40
 
 
41
        [ run format_test_wstring.cpp 
 
42
                <lib>../../../libs/test/build/boost_test_exec_monitor
 
43
              : # args
 
44
              : # input files
 
45
              : std::locale-support
 
46
        ]
 
47
  ;
 
48
}
 
49