upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/tests/unit/Makefile
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-05-18 22:49:34 +0530
committerYour Name <you@example.com>2026-05-18 22:49:34 +0530
commiteb2ae72d91a4b2ec0333a2e6d18eeeeee6b60464 (patch)
treeeff643bcd00ed44b5d7fd93084be1391970d6bd4 /tests/unit/Makefile
parent910fe47b2ed1284d93ff4d274f5c2341cb0d2d0b (diff)
feat: add WiFi setup state machine + config_add_wifi with unit tests
Diffstat (limited to 'tests/unit/Makefile')
-rw-r--r--tests/unit/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/unit/Makefile b/tests/unit/Makefile
index b978891..0faf47e 100644
--- a/tests/unit/Makefile
+++ b/tests/unit/Makefile
@@ -22,7 +22,7 @@ LDFLAGS := -lmbedcrypto -lcjson -lm
22 22
23SECP256K1_OBJ := secp256k1.o precomputed_ecmult.o precomputed_ecmult_gen.o 23SECP256K1_OBJ := secp256k1.o precomputed_ecmult.o precomputed_ecmult_gen.o
24 24
25TESTS := test_geohash test_identity test_nostr_event test_cashu test_session test_tollgate_client test_lnurl_pay test_lightning_payout test_mcp_handler test_nip04 test_cvm_server test_touch test_keyboard 25TESTS := test_geohash test_identity test_nostr_event test_cashu test_session test_tollgate_client test_lnurl_pay test_lightning_payout test_mcp_handler test_nip04 test_cvm_server test_touch test_keyboard test_wifi_setup
26 26
27.PHONY: all test clean $(TESTS) 27.PHONY: all test clean $(TESTS)
28 28
@@ -87,5 +87,8 @@ test_touch: test_touch.c $(REPO_ROOT)/main/touch.c
87test_keyboard: test_keyboard.c $(REPO_ROOT)/main/keyboard.c 87test_keyboard: test_keyboard.c $(REPO_ROOT)/main/keyboard.c
88 $(CC) $(CFLAGS) $< $(REPO_ROOT)/main/keyboard.c -o $@ $(LDFLAGS) 88 $(CC) $(CFLAGS) $< $(REPO_ROOT)/main/keyboard.c -o $@ $(LDFLAGS)
89 89
90test_wifi_setup: test_wifi_setup.c $(REPO_ROOT)/main/wifi_setup.c
91 $(CC) $(CFLAGS) $< $(REPO_ROOT)/main/wifi_setup.c -o $@ $(LDFLAGS)
92
90clean: 93clean:
91 rm -f $(TESTS) $(SECP256K1_OBJ) 94 rm -f $(TESTS) $(SECP256K1_OBJ)