summaryrefslogtreecommitdiff
path: root/tests/common/ProfilerTests.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common/ProfilerTests.cc')
-rw-r--r--tests/common/ProfilerTests.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/common/ProfilerTests.cc b/tests/common/ProfilerTests.cc
index 0b487e5..0af8d65 100644
--- a/tests/common/ProfilerTests.cc
+++ b/tests/common/ProfilerTests.cc
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021, 2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2021,2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -44,14 +44,11 @@ TEST_CASE("Common: Test Profiler")
/* Improper usage should cause failure.
* Note: Errors or warnings generated by this test will appear in output of any subsequent
- * failing tests causing misleading output. Give warning until solution is found */
- printf("Invalid profiler usage common test output:\n");
+ * failing tests causing misleading output unless logging is disabled.*/
REQUIRE(false == profilerValid.StopProfiling()); /* We need to start it first */
REQUIRE(true == profilerValid.StartProfiling()); /* Should be able to start it fine */
REQUIRE(false == profilerValid.StartProfiling()); /* Can't restart it without resetting */
- printf("End of Invalid profiler usage common test output. \nERROR messages above this line "
- "are expected and can be ignored.\n\n");
profilerValid.Reset();
REQUIRE(true == profilerValid.StartProfiling()); /* Can start it again now.. */
REQUIRE(true == profilerValid.StopProfiling());