diff options
Diffstat (limited to 'io/test')
-rw-r--r-- | io/test/stm/datatest.cxx | 8 | ||||
-rw-r--r-- | io/test/stm/testfactreg.cxx | 6 | ||||
-rw-r--r-- | io/test/testcomponent.cxx | 6 | ||||
-rw-r--r-- | io/test/testconnection.cxx | 10 |
4 files changed, 15 insertions, 15 deletions
diff --git a/io/test/stm/datatest.cxx b/io/test/stm/datatest.cxx index 9f425e02973f..353d5b23b88e 100644 --- a/io/test/stm/datatest.cxx +++ b/io/test/stm/datatest.cxx @@ -2,9 +2,9 @@ * * $RCSfile: datatest.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: jbu $ $Date: 2000-12-08 11:07:33 $ + * last change: $Author: jl $ $Date: 2001-03-12 15:53:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -80,7 +80,7 @@ #include <osl/conditn.hxx> #include <osl/mutex.hxx> -#include <vos/thread.hxx> +//#include <vos/thread.hxx> #include <assert.h> #include <string.h> @@ -88,7 +88,7 @@ using namespace ::rtl; using namespace ::osl; using namespace ::cppu; -using namespace ::vos; +//using namespace ::vos; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::io; using namespace ::com::sun::star::lang; diff --git a/io/test/stm/testfactreg.cxx b/io/test/stm/testfactreg.cxx index 2cfbdefa944e..079e6b8329e1 100644 --- a/io/test/stm/testfactreg.cxx +++ b/io/test/stm/testfactreg.cxx @@ -2,9 +2,9 @@ * * $RCSfile: testfactreg.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:24:19 $ + * last change: $Author: jl $ $Date: 2001-03-12 15:53:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -152,7 +152,7 @@ sal_Bool SAL_CALL component_writeInfo( } catch (InvalidRegistryException &) { - OSL_ENSHURE( sal_False, "### InvalidRegistryException!" ); + OSL_ENSURE( sal_False, "### InvalidRegistryException!" ); } } return sal_False; diff --git a/io/test/testcomponent.cxx b/io/test/testcomponent.cxx index ebfaf6d0be95..ca863f3aa49c 100644 --- a/io/test/testcomponent.cxx +++ b/io/test/testcomponent.cxx @@ -2,9 +2,9 @@ * * $RCSfile: testcomponent.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: mfe $ $Date: 2001-02-01 12:40:06 $ + * last change: $Author: jl $ $Date: 2001-03-12 15:53:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -76,7 +76,7 @@ #include <cppuhelper/servicefactory.hxx> #include <vos/dynload.hxx> -#include <vos/diagnose.hxx> +//#include <vos/diagnose.hxx> #include <assert.h> diff --git a/io/test/testconnection.cxx b/io/test/testconnection.cxx index 4c7adab9b4e3..31a00110aad4 100644 --- a/io/test/testconnection.cxx +++ b/io/test/testconnection.cxx @@ -2,9 +2,9 @@ * * $RCSfile: testconnection.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: mfe $ $Date: 2001-02-01 12:40:06 $ + * last change: $Author: jl $ $Date: 2001-03-12 15:53:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -192,7 +192,7 @@ void testConnection( const OUString &sConnectionDescription , { Sequence < sal_Int8 > seq(10); r->write( seq ); - OSL_ENSHURE( 0 , "expected exception not thrown" ); + OSL_ENSURE( 0 , "expected exception not thrown" ); } catch ( IOException & ) { @@ -200,7 +200,7 @@ void testConnection( const OUString &sConnectionDescription , } catch ( ... ) { - OSL_ENSHURE( 0 , "wrong exception was thrown" ); + OSL_ENSURE( 0 , "wrong exception was thrown" ); } thread.join(); @@ -228,7 +228,7 @@ int __cdecl main( int argc, char * argv[] ) Reference< XImplementationRegistration > xImplReg( xMgr->createInstance( OUString::createFromAscii("com.sun.star.registry.ImplementationRegistration") ), UNO_QUERY ); - OSL_ENSHURE( xImplReg.is(), "### no impl reg!" ); + OSL_ENSURE( xImplReg.is(), "### no impl reg!" ); OUString aLibName = OUString::createFromAscii( REG_PREFIX ); aLibName += OUString::createFromAscii("connectr"); |