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

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/test/detail/log_level.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20101104114625-8xfdhvhpsm51i0nu
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//  (C) Copyright Gennadiy Rozental 2005.
 
1
//  (C) Copyright Gennadiy Rozental 2005-2008.
2
2
//  Distributed under the Boost Software License, Version 1.0.
3
3
//  (See accompanying file LICENSE_1_0.txt or copy at 
4
4
//  http://www.boost.org/LICENSE_1_0.txt)
5
5
 
6
6
//  See http://www.boost.org/libs/test for the library home page.
7
7
//
8
 
//  File        : $RCSfile: log_level.hpp,v $
 
8
//  File        : $RCSfile$
9
9
//
10
 
//  Version     : $Revision: 1.2 $
 
10
//  Version     : $Revision: 49312 $
11
11
//
12
12
//  Description : shared definition for unit test log levels
13
13
// ***************************************************************************
26
26
enum            log_level {
27
27
    invalid_log_level        = -1,
28
28
    log_successful_tests     = 0,
29
 
    log_test_suites          = 1,
 
29
    log_test_units           = 1,
30
30
    log_messages             = 2,
31
31
    log_warnings             = 3,
32
32
    log_all_errors           = 4, // reported by unit test macros
40
40
} // namespace unit_test
41
41
} // namespace boost
42
42
 
43
 
// ***************************************************************************
44
 
//  Revision History :
45
 
//  
46
 
//  $Log: log_level.hpp,v $
47
 
//  Revision 1.2  2005/02/20 08:27:06  rogeeff
48
 
//  This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
49
 
//
50
 
//  Revision 1.1  2005/01/18 08:27:30  rogeeff
51
 
//  unit_test_log rework:
52
 
//     eliminated need for ::instance()
53
 
//     eliminated need for << end and ...END macro
54
 
//     straitend interface between log and formatters
55
 
//     change compiler like formatter name
56
 
//     minimized unit_test_log interface and reworked to use explicit calls
57
 
//
58
 
// ***************************************************************************
59
 
 
60
43
#endif // BOOST_TEST_LOG_LEVEL_HPP_011605GER