launcher: do not use a 'main' anymore
authorNiki Roo <niki@nikiroo.be>
Fri, 28 Jun 2024 10:49:19 +0000 (12:49 +0200)
committerNiki Roo <niki@nikiroo.be>
Fri, 28 Jun 2024 10:49:19 +0000 (12:49 +0200)
check/launcher.c
check/launcher.h

index cc39935dd0467f13cce83834c426247d5cf71403..b7f6cebe34bac1d305cd67d80eb9dc2836c260d4 100644 (file)
@@ -153,7 +153,7 @@ int test_start(int more) {
        return failed;
 }
 
-int main(int argc, char **argv) {
+int launch_tests(int argc, char **argv) {
        int more = 0;
        int cont = 1;
 
index ffc45e5f32bf528324ac28cfd0480689f5d3cc5f..eae06a38b59c837836d05e833b7a06c5e9175526 100644 (file)
@@ -1,3 +1,33 @@
+/*
+ * CUtils: some small C utilities
+ *
+ * Copyright (C) 2022 Niki Roo
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ */
+
+/**
+ * @file launcher.h
+ * @author Niki
+ * @date 2022 - 2024
+ *
+ * @brief Unit test helper (based upon <tt>check</tt>)
+ *
+ * This file offers a series of help functions for the <tt>check</tt> C unit
+ * tests system.
+ */
+
 #ifndef _LAUNCHER_H
 #define _LAUNCHER_H
 
@@ -26,6 +56,11 @@ void assert_sz(const char title[], size_t expected, size_t received);
 
 extern int launcher_color;
 
+/**
+ * Return the test runner (the list of tests to run).
+ *
+ * @param more activate more, longer checks (usually memory related)
+ */
 SRunner *get_tests(int more);
 
 void test_init(const char name[]);
@@ -36,5 +71,7 @@ void test_success();
 
 void test_failure();
 
+int launch_tests(int argc, char **argv);
+
 #endif