File tree Expand file tree Collapse file tree 7 files changed +3183
-19
lines changed
include/beman/execution/detail Expand file tree Collapse file tree 7 files changed +3183
-19
lines changed Original file line number Diff line number Diff line change 33pullrequest
44snd
55statics
6+ mut
7+ nd
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ incomplete list of starting points for contributions:
1717 created.
1818* The [ issues page] ( https://github.com/bemanproject/execution/issues ) lists
1919 known issues.
20- * The implememtation of a component may be missing.
20+ * The implementation of a component may be missing.
2121* The layout of some pages related to the project can be improved.
22- * Some behaviour of a component isn't tested or documented.
22+ * Some behavior of a component isn't tested or documented.
2323* You found something which should be linked from the
2424 [ resources] ( https://github.com/bemanproject/execution/blob/main/docs/contributing.md ) page.
2525* There are [ pull requests] ( https://github.com/bemanproject/execution/pulls )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ synchronously produce the result. The intention is to show a basic
1717use of some involved components to build up a feeling of how things
1818work.
1919
20- The componentes for ` std::execution ` are declared in the header
20+ The components for ` std::execution ` are declared in the header
2121` <execution> ` . This particular implementation implements the
2222cmponents in namespace ` beman::execution ` declared in the header
2323` <beman/execution/execution.hpp> ` :
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ namespace beman::execution {
3939 */
4040using forwarding_query_t = beman::execution::detail::forwarding_query_t ;
4141/* !
42- * \brief The customizatoin point object to determine whether queries should be forwarded
42+ * \brief The customization point object to determine whether queries should be forwarded
4343 * \headerfile beman/execution/execution.hpp <beman/execution/execution.hpp>
4444 *
4545 * \details
Original file line number Diff line number Diff line change 2929 exec-get -scheduler.test
3030 exec-get -stop-token.test
3131 exec-getcomplsigs.test
32- exec-into-variant.test
32+ # exec-into-variant.test
3333 exec-just.test
3434 exec-let.test
3535 exec-opstate-start .test
@@ -50,15 +50,15 @@ list(
5050 exec-snd-expos.test
5151 exec-snd-transform.test
5252 exec-starts-on .test
53- exec-split.test
54- exec-sync-wait.test
55- exec-then.test
56- exec-utils-cmplsigs.test
57- exec-when-all .test
58- exec-with-awaitable-senders.test
53+ # exec-split.test
54+ # exec-sync-wait.test
55+ # exec-then.test
56+ # exec-utils-cmplsigs.test
57+ # exec-when-all.test
58+ # exec-with-awaitable-senders.test
5959 execution-queryable-concept.test
6060 exec-bulk.test
61- execution-syn.test
61+ # execution-syn.test
6262 forward-like.test
6363 function -objects.test
6464 functional-syn.test
@@ -75,23 +75,23 @@ list(
7575 stopcallback-inplace.test
7676 stopcallback.test
7777 stopsource-cons.test
78- stopsource-general.test
78+ # stopsource-general.test
7979 stopsource-inplace-cons.test
80- stopsource-inplace-general.test
80+ # stopsource-inplace-general.test
8181 stopsource-inplace-mem.test
8282 stopsource-inplace.test
8383 stopsource-mem.test
8484 stopsource.test
8585 stoptoken-concepts.test
86- stoptoken-general.test
86+ # stoptoken-general.test
8787 stoptoken-inplace-general.test
8888 stoptoken-inplace-members.test
8989 stoptoken-inplace.test
90- stoptoken-mem.test
90+ # stoptoken-mem.test
9191 stoptoken-never-general.test
9292 stoptoken-never.test
9393 stoptoken.test
94- thread-stoptoken-intro.test
94+ # thread-stoptoken-intro.test
9595 thread-stoptoken-syn.compile.test
9696 thread-stoptoken.test
9797 thread.test
Original file line number Diff line number Diff line change 1010
1111#undef NDEBUG
1212#include < cassert>
13+ #include " ut.hpp"
1314
14- #define ASSERT (condition ) assert (condition)
15- #define ASSERT_UNREACHABLE () assert (::test::unreachable_helper())
15+ #define ASSERT (condition ) boost::ut::expect (condition)
16+ #define ASSERT_UNREACHABLE () boost::ut::expect (::test::unreachable_helper())
1617#define TEST (name ) auto main () -> int
1718
1819namespace beman::execution {}
You can’t perform that action at this time.
0 commit comments