Revert "[Tizen] Sync test harness"
authorJiyun Yang <ji.yang@samsung.com>
Wed, 31 May 2023 04:45:19 +0000 (13:45 +0900)
committerJiyun Yang <ji.yang@samsung.com>
Wed, 31 May 2023 04:45:19 +0000 (13:45 +0900)
This reverts commit 585ad5b126fadd3096102b4497b321b0900f35be.

automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-application.cpp
automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-application.h

index a8354e8..e4c6078 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2023 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -99,15 +99,15 @@ TestApplication::~TestApplication()
   delete mCore;
 }
 
-void TestApplication::LogContext(bool start, const char* tag, const char* message)
+void TestApplication::LogContext(bool start, const char* tag)
 {
   if(start)
   {
-    fprintf(stderr, "INFO: Trace Start: %s %s\n", tag, message ? message : "");
+    fprintf(stderr, "INFO: Trace Start: %s\n", tag);
   }
   else
   {
-    fprintf(stderr, "INFO: Trace End: %s %s\n", tag, message ? message : "");
+    fprintf(stderr, "INFO: Trace End: %s\n", tag);
   }
 }
 
index ce0e151..1b101c5 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TEST_APPLICATION_H
 
 /*
- * Copyright (c) 2023 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@ public:
   void InitializeCore();
   ~TestApplication() override;
   static void              LogMessage(Dali::Integration::Log::DebugPriority level, std::string& message);
-  static void              LogContext(bool start, const char* tag, const char* message);
+  static void              LogContext(bool start, const char* tag);
   Dali::Integration::Core& GetCore();
   TestPlatformAbstraction& GetPlatform();
   TestRenderController&    GetRenderController();