Kaydet (Commit) 7a743b47 authored tarafından Chris Sherlock's avatar Chris Sherlock

osl: update named pipe handle test names

Change-Id: I7c4da48b372c70cea51d8318aba384b9c605c5e1
Reviewed-on: https://gerrit.libreoffice.org/40113Reviewed-by: 's avatarChris Sherlock <chris.sherlock79@gmail.com>
Tested-by: 's avatarChris Sherlock <chris.sherlock79@gmail.com>
üst 013a87be
......@@ -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( );
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment