mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-14 21:51:19 +00:00
24 lines
633 B
C++
24 lines
633 B
C++
//===- llvm/unittest/Support/TimeValueTest.cpp - Time Value tests ---------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "llvm/Support/TimeValue.h"
|
|
#include <time.h>
|
|
|
|
using namespace llvm;
|
|
namespace {
|
|
|
|
TEST(TimeValue, time_t) {
|
|
sys::TimeValue now = sys::TimeValue::now();
|
|
time_t now_t = time(NULL);
|
|
EXPECT_TRUE(abs(static_cast<long>(now_t - now.toEpochTime())) < 2);
|
|
}
|
|
|
|
}
|