diff options
author | Eric Fiselier <eric@efcs.ca> | 2015-08-24 21:27:25 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2015-08-24 21:27:25 +0000 |
commit | b76b5b255df9a2ed28e1e3871bb95dc217fb800f (patch) | |
tree | 7fdad6709224e775cb32906813e553ac077eee2c /libcxx/test/std/utilities/date.time/gmtime.thread-unsafe.fail.cpp | |
parent | 91b3a5e7c5f13010b258d39dcfc77b22b0846d47 (diff) | |
download | bcm5719-llvm-b76b5b255df9a2ed28e1e3871bb95dc217fb800f.tar.gz bcm5719-llvm-b76b5b255df9a2ed28e1e3871bb95dc217fb800f.zip |
Move test/std/utilities/date.time to proper stable name utilities/time/date.time
llvm-svn: 245877
Diffstat (limited to 'libcxx/test/std/utilities/date.time/gmtime.thread-unsafe.fail.cpp')
-rw-r--r-- | libcxx/test/std/utilities/date.time/gmtime.thread-unsafe.fail.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libcxx/test/std/utilities/date.time/gmtime.thread-unsafe.fail.cpp b/libcxx/test/std/utilities/date.time/gmtime.thread-unsafe.fail.cpp deleted file mode 100644 index a6debcbd98d..00000000000 --- a/libcxx/test/std/utilities/date.time/gmtime.thread-unsafe.fail.cpp +++ /dev/null @@ -1,18 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -// REQUIRES: libcpp-has-no-thread-unsafe-c-functions - -#include <ctime> - -int main() { - // gmtime is not thread-safe. - std::time_t t = 0; - std::gmtime(&t); -} |