summaryrefslogtreecommitdiff
path: root/libcxx/test/thread/thread.threads/thread.thread.this/yield.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/thread/thread.threads/thread.thread.this/yield.pass.cpp')
-rw-r--r--libcxx/test/thread/thread.threads/thread.thread.this/yield.pass.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/libcxx/test/thread/thread.threads/thread.thread.this/yield.pass.cpp b/libcxx/test/thread/thread.threads/thread.thread.this/yield.pass.cpp
deleted file mode 100644
index 52f53a6a4839..000000000000
--- a/libcxx/test/thread/thread.threads/thread.thread.this/yield.pass.cpp
+++ /dev/null
@@ -1,20 +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.
-//
-//===----------------------------------------------------------------------===//
-
-// <thread>
-
-// void this_thread::yield();
-
-#include <thread>
-#include <cassert>
-
-int main()
-{
- std::this_thread::yield();
-}