Add admin serial settings view

This commit is contained in:
2026-09-07 20:12:33 +02:00
parent c73674cda2
commit 5a2aa0d4d8
20 changed files with 612 additions and 25 deletions
+6
View File
@@ -119,6 +119,9 @@ static void auth_reset(void) {
#ifdef HOST_ADMIN
#include "admin_test.c"
#endif
#ifdef HOST_SETTINGS
#include "settings_test.c"
#endif
int main(void) {
assert(store_tests() == 0); auth_reset();
@@ -266,6 +269,9 @@ int main(void) {
puts("PASS: exact six-header successful login budget; all smaller header capacities invalidate unpublished login");
#ifdef HOST_ADMIN
admin_tests();
#endif
#ifdef HOST_SETTINGS
settings_tests();
#endif
return 0;
}