blob: 03a0aa4d69666f90a668dea7cefa8881713eb073 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// test <ctime>
11
12#include <ctime>
13#include <type_traits>
14
15#ifndef NULL
16#error NULL not defined
17#endif
18
19#ifndef CLOCKS_PER_SEC
20#error CLOCKS_PER_SEC not defined
21#endif
22
23int main()
24{
25 std::clock_t c = 0;
Dan Albert1d4a1ed2016-05-25 22:36:09 -070026 ((void)c);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000027 std::size_t s = 0;
28 std::time_t t = 0;
29 std::tm tm = {0};
30 static_assert((std::is_same<decltype(std::clock()), std::clock_t>::value), "");
31 static_assert((std::is_same<decltype(std::difftime(t,t)), double>::value), "");
32 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
33 static_assert((std::is_same<decltype(std::time(&t)), std::time_t>::value), "");
Ed Schouten323ade32015-06-24 08:44:38 +000034#ifndef _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000035 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
36 static_assert((std::is_same<decltype(std::ctime(&t)), char*>::value), "");
37 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
38 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
Ed Schouten323ade32015-06-24 08:44:38 +000039#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000040 char* c1 = 0;
41 const char* c2 = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000042 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
43}