We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33e9363 commit ce32184Copy full SHA for ce32184
3 files changed
src/main.c
@@ -29,6 +29,7 @@
29
#include "mbpfan.h"
30
#include "daemon.h"
31
#include "global.h"
32
+#include "main.h"
33
#include "minunit.h"
34
35
int daemonize = 1;
src/main.h
@@ -0,0 +1 @@
1
+void check_requirements();
src/minunit.c
@@ -9,6 +9,7 @@
9
10
11
#include "settings.h"
12
13
14
15
int tests_run = 0;
@@ -193,6 +194,8 @@ static const char *all_tests()
193
194
195
int tests()
196
{
197
+ check_requirements();
198
+
199
printf("Starting the tests..\n");
200
printf("It is normal for them to take a bit to finish.\n");
201
0 commit comments