mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Cleaning up static initializers in TimeValue.
Code reviewed by Chandlerc git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216703 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -31,12 +31,12 @@ TEST(ProcessTest, SelfProcess) {
|
||||
|
||||
EXPECT_LT(1u, process::get_self()->page_size());
|
||||
|
||||
EXPECT_LT(TimeValue::MinTime, process::get_self()->get_user_time());
|
||||
EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_user_time());
|
||||
EXPECT_LT(TimeValue::MinTime, process::get_self()->get_system_time());
|
||||
EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_system_time());
|
||||
EXPECT_LT(TimeValue::MinTime, process::get_self()->get_wall_time());
|
||||
EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_wall_time());
|
||||
EXPECT_LT(TimeValue::MinTime(), process::get_self()->get_user_time());
|
||||
EXPECT_GT(TimeValue::MaxTime(), process::get_self()->get_user_time());
|
||||
EXPECT_LT(TimeValue::MinTime(), process::get_self()->get_system_time());
|
||||
EXPECT_GT(TimeValue::MaxTime(), process::get_self()->get_system_time());
|
||||
EXPECT_LT(TimeValue::MinTime(), process::get_self()->get_wall_time());
|
||||
EXPECT_GT(TimeValue::MaxTime(), process::get_self()->get_wall_time());
|
||||
}
|
||||
|
||||
TEST(ProcessTest, GetRandomNumberTest) {
|
||||
|
Reference in New Issue
Block a user