summaryrefslogtreecommitdiff
path: root/test/main.cpp
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2022-02-22 17:03:21 +0100
committerKlaus Aehlig <klaus.aehlig@huawei.com>2022-02-22 17:03:21 +0100
commit619def44c1cca9f3cdf63544d5f24f2c7a7d9b77 (patch)
tree01868de723cb82c86842f33743fa7b14e24c1fa3 /test/main.cpp
downloadjustbuild-619def44c1cca9f3cdf63544d5f24f2c7a7d9b77.tar.gz
Initial self-hosting commit
This is the initial version of our tool that is able to build itself. In can be bootstrapped by ./bin/bootstrap.py Co-authored-by: Oliver Reiche <oliver.reiche@huawei.com> Co-authored-by: Victor Moreno <victor.moreno1@huawei.com>
Diffstat (limited to 'test/main.cpp')
-rw-r--r--test/main.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/main.cpp b/test/main.cpp
new file mode 100644
index 00000000..2335726f
--- /dev/null
+++ b/test/main.cpp
@@ -0,0 +1,8 @@
+#define CATCH_CONFIG_RUNNER
+#include "catch2/catch.hpp"
+#include "test/utils/logging/log_config.hpp"
+
+auto main(int argc, char* argv[]) -> int {
+ ConfigureLogging();
+ return Catch::Session().run(argc, argv);
+}