main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "crucible/boot/main.hpp" #include "crucible/core/memory.hpp" #include "crucible/core/string.hpp" #include "crucible/test/shell.hpp" namespace crucible::test_test::main { auto launch(core::memory::ImmutableView<core::string::String> const &arguments) -> boot::main::ExitStatus { return test::shell::launch("crucible-test", arguments); } } CRUCIBLE_MAIN(::crucible::test_test::main::launch)