Files
rocm-systems/projects/rocr-runtime/rocrtst/common/utils_test/utils_timer_gtest.cpp
T
systems-assistant[bot] d8cba83d42 Add 'projects/rocr-runtime/' from commit '72061a9024139fa0a99f73f9d3d4deb275670095'
git-subtree-dir: projects/rocr-runtime
git-subtree-mainline: ad0fb25ed5
git-subtree-split: 72061a9024
2025-07-22 22:52:49 +00:00

33 lines
682 B
C++

#include <iostream>
#include "gtest/gtest.h"
#include "utils_timer_test.hpp"
using namespace std;
class rocrtstUtilsTimerGtest : public ::testing::Test {
protected:
// No argument constructor called from Google Test Framework
rocrtstUtilsTimerGtest() { };
};
TEST_F(rocrtstUtilsTimerGtest, TestingTimer101) {
// Create a Hsa Perf Utils Timer Test object.
// The test will iterate 108 times with sleep
// time of 3 milliseconds per iteration
rocrtstUtilsTimerTest* timer = new rocrtstUtilsTimerTest(108, 3);
// Let the timer object collect data
timer->run();
// Print the statistics of timer object
timer->print();
}