Skip to content

Commit c464a2f

Browse files
committed
SWPROT-8953: build: Limit tests to zpc since UnifySDK-1.7 dep
As reported in earlier commit, using UnifySDK-1.7 has an impact on tests: The following tests did not run: 188 - zwave_smartstart_management_test (Disabled) The following tests FAILED: 1 - unify_build (Failed) 160 - zwave_command_class_switch_multilevel_test (Failed) 201 - binding_cluster_mapper_test (Failed) When rescoping to just test zpc, it is still failling: 1The following tests did not run: 131 - zwave_smartstart_management_test (Disabled) The following tests FAILED: 103 - zwave_command_class_switch_multilevel_test (Failed) 144 - binding_cluster_mapper_test (Failed) Start 10: zpc_stdin_test (...) Invalid number of arguments: Payload needs to be specified. Example: zwave_command_handler_dispatch 87010003500308500403500506 zwave_command_handler_dispatch: Invalid argument: stoi Let's bypass revert some changes, until they pass again. Origin: #13 Signed-off-by: Philippe Coval <[email protected]>
1 parent fd733dc commit c464a2f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

helper.mk

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,15 @@ build: ${build_dir}/CMakeCache.txt
163163
${build_dir}/%: build
164164
file -E "$@"
165165

166-
test: ${build_dir}
166+
default/test: ${build_dir}
167167
ctest --test-dir ${<}
168168

169+
zpc/test: ${build_dir}/applications/zpc
170+
ctest --test-dir ${<}
171+
172+
test: zpc/test
173+
@echo "TODO: enable more test"
174+
169175
check: test
170176

171177
dist: ${build_dir}

0 commit comments

Comments
 (0)