diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2014-02-11 09:11:18 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2014-02-11 09:11:18 +0000 |
commit | 70e6585f0c7fd6385734ccf9d88fc1ad87e62a0d (patch) | |
tree | b6ab65d32b2f35aff29fe0c3d84f69336b10c574 /llvm/unittests/Support/TimeValueTest.cpp | |
parent | c30e0c1728e76601eef9b57ff5c92161549bab68 (diff) | |
download | bcm5719-llvm-70e6585f0c7fd6385734ccf9d88fc1ad87e62a0d.tar.gz bcm5719-llvm-70e6585f0c7fd6385734ccf9d88fc1ad87e62a0d.zip |
Remove TimeValue::toPosixTime() -- it is buggy, semantics are unclear, and its
only current user should be using toEpochTime() instead.
llvm-svn: 201136
Diffstat (limited to 'llvm/unittests/Support/TimeValueTest.cpp')
-rw-r--r-- | llvm/unittests/Support/TimeValueTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/unittests/Support/TimeValueTest.cpp b/llvm/unittests/Support/TimeValueTest.cpp index fb2abe38293..e0368d3d409 100644 --- a/llvm/unittests/Support/TimeValueTest.cpp +++ b/llvm/unittests/Support/TimeValueTest.cpp @@ -30,7 +30,8 @@ TEST(TimeValue, Win32FILETIME) { epoch.fromWin32Time(ft1970); // The "seconds" part in Posix time may be expected as zero. - EXPECT_EQ(ns / 100, epoch.toPosixTime()); + EXPECT_EQ(0u, epoch.toEpochTime()); + EXPECT_EQ(ns, static_cast<uint32_t>(epoch.nanoseconds())); // Confirm it reversible. EXPECT_EQ(ft1970, epoch.toWin32Time()); |