Changeset b96e87e in mainline
- Timestamp:
- 2019-07-03T10:00:54Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 96fec16
- Parents:
- 4dfb259
- Location:
- uspace/lib/cpp
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/Makefile
r4dfb259 rb96e87e 64 64 src/__bits/test/deque.cpp \ 65 65 src/__bits/test/functional.cpp \ 66 src/__bits/test/future.cpp \ 66 67 src/__bits/test/list.cpp \ 67 68 src/__bits/test/map.cpp \ -
uspace/lib/cpp/include/__bits/test/tests.hpp
r4dfb259 rb96e87e 1 1 /* 2 * Copyright (c) 201 8Jaroslav Jindrak2 * Copyright (c) 2019 Jaroslav Jindrak 3 3 * All rights reserved. 4 4 * … … 295 295 void test_mutating(); 296 296 }; 297 298 class future_test: public test_suite 299 { 300 public: 301 bool run(bool) override; 302 const char* name() override; 303 private: 304 void test_future(); 305 void test_promise(); 306 void test_async(); 307 void test_packaged_task(); 308 void test_shared_future(); 309 }; 297 310 } 298 311
Note:
See TracChangeset
for help on using the changeset viewer.