[Libreoffice-commits] core.git: sal/qa

Chris Sherlock chris.sherlock79 at gmail.com
Mon Jul 17 22:46:17 UTC 2017


 sal/qa/osl/pipe/osl_Pipe.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 7a743b472dadb817eb7a6ed8063cee80ce7412e8
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date:   Tue Jul 18 08:35:59 2017 +1000

    osl: update named pipe handle test names
    
    Change-Id: I7c4da48b372c70cea51d8318aba384b9c605c5e1
    Reviewed-on: https://gerrit.libreoffice.org/40113
    Reviewed-by: Chris Sherlock <chris.sherlock79 at gmail.com>
    Tested-by: Chris Sherlock <chris.sherlock79 at gmail.com>

diff --git a/sal/qa/osl/pipe/osl_Pipe.cxx b/sal/qa/osl/pipe/osl_Pipe.cxx
index 431b623156d5..d6a165785795 100644
--- a/sal/qa/osl/pipe/osl_Pipe.cxx
+++ b/sal/qa/osl/pipe/osl_Pipe.cxx
@@ -562,7 +562,7 @@ namespace osl_Pipe
     public:
         bool bRes, bRes1;
 
-        void getHandle_001( )
+        void getHandle_equalityOperatorAgainstSelf( )
             {
                 ::osl::Pipe aPipe( test::uniquePipeName(aTestPipeName), osl_Pipe_OPEN );
                 bRes = aPipe == aPipe.getHandle( );
@@ -572,7 +572,7 @@ namespace osl_Pipe
                                         bRes );
             }
 
-        void getHandle_002( )
+        void getHandle_equalityOperatorAgainstDerivedPipe( )
             {
                 ::osl::Pipe aPipe( test::uniquePipeName(aTestPipeName), osl_Pipe_CREATE );
                 ::osl::Pipe aPipe1( aPipe.getHandle( ) );
@@ -585,8 +585,8 @@ namespace osl_Pipe
             }
 
         CPPUNIT_TEST_SUITE( getHandle );
-        CPPUNIT_TEST( getHandle_001 );
-        CPPUNIT_TEST( getHandle_002 );
+        CPPUNIT_TEST( getHandle_equalityOperatorAgainstSelf );
+        CPPUNIT_TEST( getHandle_equalityOperatorAgainstDerivedPipe );
         CPPUNIT_TEST_SUITE_END( );
     };
 


More information about the Libreoffice-commits mailing list