]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/test/impl/junit_log_formatter.ipp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / test / impl / junit_log_formatter.ipp
index 10d83527c0bb09860637ad8925c52f3b0abf690e..8a3b17dc2ef2ce7bbe848507dde0ecb28f0f5e92 100644 (file)
@@ -397,7 +397,7 @@ public:
         m_stream << "</testcase>" << std::endl;
     }
 
-    void    visit( test_case const& tc )
+    void    visit( test_case const& tc ) BOOST_OVERRIDE
     {
 
         test_results const& tr = results_collector.results( tc.p_id );
@@ -412,7 +412,7 @@ public:
         }
     }
 
-    bool    test_suite_start( test_suite const& ts )
+    bool    test_suite_start( test_suite const& ts ) BOOST_OVERRIDE
     {
         test_results const& tr = results_collector.results( ts.p_id );
 
@@ -421,7 +421,7 @@ public:
             m_stream << "<testsuite";
 
             // think about: maybe we should add the number of fixtures of a test_suite as
-            // independant tests (field p_fixtures).
+            // independent tests (field p_fixtures).
             // same goes for the timed-execution: we can think of that as a separate test-unit
             // in the suite.
             // see https://llg.cubic.org/docs/junit/ and
@@ -471,7 +471,7 @@ public:
         return true; // indicates that the children should also be parsed
     }
 
-    virtual void    test_suite_finish( test_suite const& ts )
+    void    test_suite_finish( test_suite const& ts ) BOOST_OVERRIDE
     {
         if( m_ts.p_id == ts.p_id ) {
             write_testcase_system_out(runner_log, 0, false);