summaryrefslogtreecommitdiffstats
path: root/io/test/stm/pumptest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'io/test/stm/pumptest.cxx')
-rw-r--r--io/test/stm/pumptest.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/io/test/stm/pumptest.cxx b/io/test/stm/pumptest.cxx
index a2bdf4ff804f..e00d840f3a75 100644
--- a/io/test/stm/pumptest.cxx
+++ b/io/test/stm/pumptest.cxx
@@ -315,7 +315,7 @@ void OPumpTest::testClose( const Reference< XInterface > &r )
TestCase t( m_rSmgr, r );
ERROR_ASSERT( ! t.m_pTestListener->m_bStarted , "started too early" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "terminiation unexpected" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "termination unexpected" );
ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" );
ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected clase" );
@@ -323,7 +323,7 @@ void OPumpTest::testClose( const Reference< XInterface > &r )
mywait();
ERROR_ASSERT( t.m_pTestListener->m_bStarted , "should have been started already" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "terminiation unexpected" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "termination unexpected" );
ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" );
ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected clase" );
@@ -334,7 +334,7 @@ void OPumpTest::testClose( const Reference< XInterface > &r )
t.m_rOutSource->closeOutput();
mywait();
ERROR_ASSERT( t.m_pTestListener->m_bStarted , "should have been started already" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "should be terminiated already" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "should be terminated already" );
ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" );
ERROR_ASSERT( t.m_pTestListener->m_bClosed, "should be closed already" );
}
@@ -344,23 +344,23 @@ void OPumpTest::testTerminate( const Reference< XInterface > &r )
TestCase t( m_rSmgr, r );
ERROR_ASSERT( ! t.m_pTestListener->m_bStarted , "started too early" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "terminiation unexpected" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "termination unexpected" );
ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected clase" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected closed" );
t.m_rControl->start();
mywait();
ERROR_ASSERT( t.m_pTestListener->m_bStarted , "should have been started already" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "terminiation unexpected" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "termination unexpected" );
ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected clase" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected closed" );
t.m_rControl->terminate();
mywait();
ERROR_ASSERT( t.m_pTestListener->m_bStarted , "should have been started already" );
- ERROR_ASSERT( t.m_pTestListener->m_bTerminated , "should be terminiated already" );
+ ERROR_ASSERT( t.m_pTestListener->m_bTerminated , "should be terminated already" );
// terminate leads to an error, that is no surprise, in fact
// one can't tell whether the error occurs because of the terminate
// call or for some other reason!
@@ -383,7 +383,7 @@ void OPumpTest::testFunction( const Reference< XInterface > &r )
mywait();
ERROR_ASSERT( t.m_pTestListener->m_bStarted , "should have been started already" );
- ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "should be terminiated already" );
+ ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "should be terminated already" );
ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" );
ERROR_ASSERT( t.m_pTestListener->m_bClosed, "should be closed already" );
}