aqhome: added PATH module, started VARS module.

those might later get incorporated into libgwenhywfar.
This commit is contained in:
Martin Preuss
2024-05-07 23:57:07 +02:00
parent f400104bbc
commit bcc7629b1e
9 changed files with 757 additions and 1 deletions

View File

@@ -18,6 +18,7 @@
#include "aqhome-react/types/prgrule-t.h"
#include "aqhome/aqhome.h"
#include "aqhome/data/path-t.h"
#include <gwenhywfar/gwenhywfar.h>
#include <gwenhywfar/args.h>
@@ -304,7 +305,13 @@ int _testModules(int argc, char **argv)
rv=AQHREACT_PrgRule_AddTests(TestFramework_GetModulesRoot(tf));
if (rv<0) {
fprintf(stderr, "Adding module failed.\n");
fprintf(stderr, "Adding module \"PrgRule\" failed.\n");
return 2;
}
rv=AQH_Path_AddTests(TestFramework_GetModulesRoot(tf));
if (rv<0) {
fprintf(stderr, "Adding module \"path\" failed.\n");
return 2;
}