Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Kharisov <ah@bright-box.com>2021-10-13 18:39:37 +0300
committerGitHub <noreply@github.com>2021-10-13 18:39:37 +0300
commit1db29eaea85efed70bf8a249bdd9c883e8d44b31 (patch)
tree201ddbe8bc467795b6c7a4687f7f11b8b9fc63fe /applications/applications.mk
parenta643bd14be803d3bd47c8dde3ecca9f7ae2e8b4d (diff)
[FL-1946] RPC App launch (#758)
* RPC: Add App start, lock status - Add RPC commands Application start, lock status acquiring. - Write tests for RPC App system. - Replace Unit Tests application with CLI command. This is for CI needs and for tests that run application. * Fix NDEBUG build * Update PB submodule * Fix RPC print (ENABLE DEBUG PRINT!) * snprintf -> string_t * Fix Hard Fault (early mutex free) * printf -> string_t, format, enable tests * Update submodule: protobuf * Applications: rollback unit test naming scheme. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index 5fb8a511..4e9f6d56 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -42,7 +42,6 @@ APP_BLINK = 1
APP_IRDA_MONITOR = 1
APP_KEYPAD_TEST = 1
APP_SD_TEST = 1
-APP_UNIT_TESTS = 0
APP_VIBRO_DEMO = 1
APP_USB_TEST = 1
endif
@@ -60,7 +59,7 @@ SRV_GUI = 1
endif
-APP_UNIT_TESTS ?= 0
+APP_UNIT_TESTS ?= 0
ifeq ($(APP_UNIT_TESTS), 1)
CFLAGS += -DAPP_UNIT_TESTS
endif