summaryrefslogtreecommitdiff
path: root/sal/qa
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-07-18 08:35:59 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-07-18 00:45:35 +0200
commit7a743b472dadb817eb7a6ed8063cee80ce7412e8 (patch)
tree8157461b50960202323920299af1eadc04e61df8 /sal/qa
parent013a87be06f9d1d4d0acb0da5fd528e9e34d759a (diff)
osl: update named pipe handle test names
Change-Id: I7c4da48b372c70cea51d8318aba384b9c605c5e1 Reviewed-on: https://gerrit.libreoffice.org/40113 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'sal/qa')
-rw-r--r--sal/qa/osl/pipe/osl_Pipe.cxx8
1 files changed, 4 insertions, 4 deletions
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( );
};