From da32c729a8e4c8fdfd1a30d4dcd2955d1366f22c Mon Sep 17 00:00:00 2001 From: rdivacky Date: Thu, 10 Jun 2010 19:59:23 +0000 Subject: Remove Xcode cmake win32 projects unittests from LLVM and clang.xcodeproj INPUTS win32 from clang. Requested by: jkim Approved by: ed (mentor) --- contrib/llvm/unittests/Support/System.cpp | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 contrib/llvm/unittests/Support/System.cpp (limited to 'contrib/llvm/unittests/Support/System.cpp') diff --git a/contrib/llvm/unittests/Support/System.cpp b/contrib/llvm/unittests/Support/System.cpp deleted file mode 100644 index b3dd17d..0000000 --- a/contrib/llvm/unittests/Support/System.cpp +++ /dev/null @@ -1,16 +0,0 @@ -//===- llvm/unittest/Support/System.cpp - System tests --===// -#include "gtest/gtest.h" -#include "llvm/System/TimeValue.h" -#include - -using namespace llvm; -namespace { -class SystemTest : public ::testing::Test { -}; - -TEST_F(SystemTest, TimeValue) { - sys::TimeValue now = sys::TimeValue::now(); - time_t now_t = time(NULL); - EXPECT_TRUE(abs(now_t - now.toEpochTime()) < 2); -} -} -- cgit v1.1