Skip to content

Commit

Permalink
Starboardize internal Timer class in GTEST (#1836)
Browse files Browse the repository at this point in the history
b/280671902

Change-Id: Ic4f7f5f61c69c45be71529c567a6324122c6471b
(cherry picked from commit a65712a)
  • Loading branch information
arjungm authored and anonymous1-me committed Oct 24, 2023
1 parent cc5d09b commit 31a7fea
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions third_party/googletest/src/googletest/src/gtest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,21 @@ std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {
}

// A helper class for measuring elapsed times.
#if GTEST_OS_STARBOARD
class Timer {
public:
Timer() : start_(GetTimeInMillis()) {
}

// Return time elapsed in milliseconds since the timer was created.
TimeInMillis Elapsed() {
return (GetTimeInMillis() - start_);
}

private:
TimeInMillis start_;
};
#else // GTEST_OS_STARBOARD
class Timer {
public:
Timer() : start_(std::chrono::steady_clock::now()) {}
Expand All @@ -1146,6 +1161,7 @@ class Timer {
private:
std::chrono::steady_clock::time_point start_;
};
#endif // GTEST_OS_STARBOARD

// Returns a timestamp as milliseconds since the epoch. Note this time may jump
// around subject to adjustments by the system, to measure elapsed time use
Expand Down

0 comments on commit 31a7fea

Please sign in to comment.