]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/test/test_framework_init_observer.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / test / test_framework_init_observer.hpp
index 8bf0bb99479e4ad079ef485dbe630a657c28fad5..230fb62f914fe18c4e0ae1a919efc061f7c7f709 100644 (file)
@@ -34,7 +34,7 @@ namespace unit_test {
 class BOOST_TEST_DECL framework_init_observer_t : public test_observer {
 public:
 
-    virtual void        test_start( counter_t );
+    virtual void        test_start( counter_t, test_unit_id );
 
     virtual void        assertion_result( unit_test::assertion_result );
     virtual void        exception_caught( execution_exception const& );
@@ -47,12 +47,10 @@ public:
     /// Indicates if a failure has been recorded so far
     bool                has_failed( ) const;
 
-    /// Singleton pattern
-    BOOST_TEST_SINGLETON_CONS( framework_init_observer_t )
+private:
+    bool m_has_failure;
 };
 
-BOOST_TEST_SINGLETON_INST( framework_init_observer )
-
 } // namespace unit_test
 } // namespace boost