Compiling the source using CATCH_CONFIG_MAIN to provide main() takes
several seconds, so split it out from any library testing code, so it
really needs to be built once only.
Signed-off-by: Alexander Stein <alexander.stein@mailbox.org>
[Bartosz: added the copyright notice for consistency with other files]
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
bin_PROGRAMS = gpiod-cxx-test
-gpiod_cxx_test_SOURCES = gpiod-cxx-test.cpp \
+gpiod_cxx_test_SOURCES = gpiod-cxx-test-main.cpp \
+ gpiod-cxx-test.cpp \
gpio-mockup.cpp \
gpio-mockup.hpp \
tests-chip.cpp \
--- /dev/null
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+/*
+ * This file is part of libgpiod.
+ *
+ * Copyright (C) 2019 Bartosz Golaszewski <bgolaszewski@baylibre.com>
+ */
+
+#define CATCH_CONFIG_MAIN
+#include <catch2/catch.hpp>
* Copyright (C) 2019 Bartosz Golaszewski <bgolaszewski@baylibre.com>
*/
-#define CATCH_CONFIG_MAIN
-#include <catch2/catch.hpp>
#include <linux/version.h>
#include <sys/utsname.h>
#include <system_error>