From b7332b04df5d50c92640c74cfeb138ecb7e3f7ae Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Tue, 20 Aug 2019 18:01:01 +0000 Subject: Remove upstream files and directories from vendor/libc++/dist that we do not use. This saves on repository space, and reduces the number of tree conflicts when merging. --- .../thread.thread.algorithm/swap.pass.cpp | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.algorithm/swap.pass.cpp (limited to 'test/std/thread/thread.threads/thread.thread.class/thread.thread.algorithm') diff --git a/test/std/thread/thread.threads/thread.thread.class/thread.thread.algorithm/swap.pass.cpp b/test/std/thread/thread.threads/thread.thread.class/thread.thread.algorithm/swap.pass.cpp deleted file mode 100644 index 4d3a742dd168..000000000000 --- a/test/std/thread/thread.threads/thread.thread.class/thread.thread.algorithm/swap.pass.cpp +++ /dev/null @@ -1,58 +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. -// -//===----------------------------------------------------------------------===// -// -// UNSUPPORTED: libcpp-has-no-threads - -// - -// class thread - -// void swap(thread& x, thread& y); - -#include -#include -#include -#include - -class G -{ - int alive_; -public: - static int n_alive; - static bool op_run; - - G() : alive_(1) {++n_alive;} - G(const G& g) : alive_(g.alive_) {++n_alive;} - ~G() {alive_ = 0; --n_alive;} - - void operator()() - { - assert(alive_ == 1); - assert(n_alive >= 1); - op_run = true; - } -}; - -int G::n_alive = 0; -bool G::op_run = false; - -int main() -{ - { - G g; - std::thread t0(g); - std::thread::id id0 = t0.get_id(); - std::thread t1; - std::thread::id id1 = t1.get_id(); - swap(t0, t1); - assert(t0.get_id() == id1); - assert(t1.get_id() == id0); - t1.join(); - } -} -- cgit v1.3