summaryrefslogtreecommitdiff
path: root/stoc/test
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-09 15:48:38 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-11 18:56:16 +0000
commit4ef9ccea6c4aa79cdc57dea52b47775c346696ec (patch)
treead3b4dd30484436c595990bd8994f94477b9492b /stoc/test
parent4282ea67c2e90222f141df8213b06dfed09d4c85 (diff)
OSL_TRACE -> SAL in sfx2..svx
Change-Id: I78cf8058a5682baa3d7b00a25feeb2d28fb3e66e Reviewed-on: https://gerrit.libreoffice.org/31799 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'stoc/test')
-rw-r--r--stoc/test/javavm/testjavavm.cxx7
-rw-r--r--stoc/test/testconv.cxx5
-rw-r--r--stoc/test/testcorefl.cxx6
-rw-r--r--stoc/test/testiadapter.cxx2
-rw-r--r--stoc/test/testintrosp.cxx5
-rw-r--r--stoc/test/testproxyfac.cxx4
6 files changed, 8 insertions, 21 deletions
diff --git a/stoc/test/javavm/testjavavm.cxx b/stoc/test/javavm/testjavavm.cxx
index 827a93cfb63e..f856f76dc2a8 100644
--- a/stoc/test/javavm/testjavavm.cxx
+++ b/stoc/test/javavm/testjavavm.cxx
@@ -89,7 +89,7 @@ sal_Bool testJavaVM(const Reference< XMultiServiceFactory > & xMgr )
jclass cls = p_env->FindClass( "TestJavaVM");
if (cls == 0) {
- OSL_TRACE( "Can't find Prog class");
+ SAL_WARN("stoc", "Can't find Prog class");
exit(1);
}
@@ -139,10 +139,7 @@ SAL_IMPLEMENT_MAIN()
catch (const Exception & rExc)
{
OSL_FAIL( "### exception occurred!" );
- OString aMsg( OUStringToOString( rExc.Message, RTL_TEXTENCODING_ASCII_US ) );
- OSL_TRACE( "### exception occurred: " );
- OSL_TRACE( "%s", aMsg.getStr() );
- OSL_TRACE( "\n" );
+ SAL_WARN("stoc", "### exception occurred: " << rExc.Message );
}
Reference< XComponent > xCompContext( context, UNO_QUERY );
diff --git a/stoc/test/testconv.cxx b/stoc/test/testconv.cxx
index afe682fb8631..2eebdef67d4c 100644
--- a/stoc/test/testconv.cxx
+++ b/stoc/test/testconv.cxx
@@ -672,10 +672,7 @@ SAL_IMPLEMENT_MAIN()
catch (const Exception & rExc)
{
OSL_FAIL( "### exception occurred!" );
- OString aMsg( OUStringToOString( rExc.Message, RTL_TEXTENCODING_ASCII_US ) );
- OSL_TRACE( "### exception occurred: " );
- OSL_TRACE( "%s", aMsg.getStr() );
- OSL_TRACE( "\n" );
+ SAL_WARN("stoc", "### exception occurred: " << rExc.Message );
}
Reference< XComponent >( xMgr, UNO_QUERY )->dispose();
diff --git a/stoc/test/testcorefl.cxx b/stoc/test/testcorefl.cxx
index 05df96424a28..7aa06a9ca82d 100644
--- a/stoc/test/testcorefl.cxx
+++ b/stoc/test/testcorefl.cxx
@@ -368,11 +368,7 @@ SAL_IMPLEMENT_MAIN()
catch (const Exception & rExc)
{
OSL_FAIL( "### exception occurred!" );
- OString aMsg(
- OUStringToOString( rExc.Message, RTL_TEXTENCODING_ASCII_US ) );
- OSL_TRACE( "### exception occurred: " );
- OSL_TRACE( "%s", aMsg.getStr() );
- OSL_TRACE( "\n" );
+ SAL_WARN("stoc", "### exception occurred: " << rExc.Message );
}
printf( "testcorefl %s !\n", (bSucc ? "succeeded" : "failed") );
diff --git a/stoc/test/testiadapter.cxx b/stoc/test/testiadapter.cxx
index 54c260e4fef4..a335939b9659 100644
--- a/stoc/test/testiadapter.cxx
+++ b/stoc/test/testiadapter.cxx
@@ -159,7 +159,7 @@ class Test_Impl : public WeakImplHelper< XLanguageBindingTest >
public:
virtual ~Test_Impl()
- { OSL_TRACE( "> scalar Test_Impl dtor <\n" ); }
+ { SAL_INFO("stoc", "> scalar Test_Impl dtor <" ); }
// XLBTestBase
virtual void SAL_CALL setValues( sal_Bool bBool, sal_Unicode cChar, sal_Int8 nByte,
diff --git a/stoc/test/testintrosp.cxx b/stoc/test/testintrosp.cxx
index 22df49ebc509..caff1337a91c 100644
--- a/stoc/test/testintrosp.cxx
+++ b/stoc/test/testintrosp.cxx
@@ -1196,10 +1196,7 @@ SAL_IMPLEMENT_MAIN()
catch (const Exception & rExc)
{
OSL_FAIL( "### exception occurred!" );
- OString aMsg( OUStringToOString( rExc.Message, RTL_TEXTENCODING_ASCII_US ) );
- OSL_TRACE( "### exception occurred: " );
- OSL_TRACE( "%s", aMsg.getStr() );
- OSL_TRACE( "\n" );
+ SAL_WARN("stoc", "### exception occurred: " << rExc.Message );
}
Reference< XComponent >( xMgr, UNO_QUERY )->dispose();
diff --git a/stoc/test/testproxyfac.cxx b/stoc/test/testproxyfac.cxx
index 83bda7ff321f..ebc878696316 100644
--- a/stoc/test/testproxyfac.cxx
+++ b/stoc/test/testproxyfac.cxx
@@ -55,7 +55,7 @@ public:
virtual ~TargetObject() {
--s_obj;
- OSL_TRACE( "~TargetObject()" );
+ SAL_INFO("stoc", "~TargetObject()" );
}
TargetObject()
{ ++s_obj; }
@@ -113,7 +113,7 @@ public:
virtual ~TestMaster() {
--s_obj;
- OSL_TRACE( "~TestMaster()" );
+ SAL_INFO("stoc", "~TestMaster()" );
}
virtual Any SAL_CALL queryInterface( const Type & rType )