Willem Cazander
c13a26d6b5
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -13s
63 lines
3.6 KiB
Makefile
63 lines
3.6 KiB
Makefile
|
||
define __mb_flow_assert_grep_binary_x
|
||
.RECIPEPREFIX := $(MB_@RECIPE)
|
||
|
||
$(1)/@@$(5)-deps:: $(1)/@assert/$(5)/$(2)
|
||
|
||
$(1)/@assert/$(5)/$(2): $(1)/@build
|
||
$(MB_@RECIPE)grep -q -U $(4) $(1)/$(3)
|
||
$(MB_@RECIPE)$$(call mb_make_call,mb_os_echo_assert,$$(MB_I18N_ASSERT_SUCCESS) $(1)/@assert/$(2)/$(5))
|
||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_doc_target,$(1)/@assert/$(5)/$(2),"Asserts that $(3) output matches.")
|
||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_make_target_phony,$(1)/@assert/$(5)/$(2))
|
||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_proj_grow_deps_phase,$(5),$(1)/@assert/$(5)/$(2))
|
||
|
||
.RECIPEPREFIX := $(MB_@RECIPEPREFIX)
|
||
endef
|
||
define mb_flow_assert_grep_binary_test
|
||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_make_check_arg4,$(0),$(1),$(2),$(3),$(4))
|
||
$(MB_ᕽᕽᕽ )$(eval $(call mb_make_call,__mb_flow_assert_grep_binary_x,$(1),$(2),$(3),$(4),@test))
|
||
endef
|
||
$(call mb_make_call,mb_doc_function_flow,mb_flow_assert_grep_binary_test,"Inject flow of single binary grep assert.","<build-dir> <test-id> <file> <grep-match>")
|
||
define mb_flow_assert_grep_binary_package_qa
|
||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_make_check_arg4,$(0),$(1),$(2),$(3),$(4))
|
||
$(MB_ᕽᕽᕽ )$(eval $(call mb_make_call,__mb_flow_assert_grep_binary_x,$(1),$(2),$(3),$(4),@package-qa))
|
||
endef
|
||
$(call mb_make_call,mb_doc_function_flow,mb_flow_assert_grep_binary_package_qa,"Inject flow of single binary grep assert.","<build-dir> <test-id> <file> <grep-match>")
|
||
|
||
define __mb_flow_assert_msxpipe_grep_x2
|
||
$(MB_ᕽᕽᕽ )$(shell grep -q $(1) $(2) && echo || echo fail)
|
||
endef
|
||
|
||
|
||
define __mb_flow_assert_msxpipe_grep_x
|
||
.RECIPEPREFIX := $(MB_@RECIPE)
|
||
|
||
$(1)/@@$(5)-deps:: $(1)/@assert/$(5)/$(2)
|
||
$(7)/@@init-deps:: $(1)/@build
|
||
|
||
$(1)/@assert/$(5)/$(2): $(7)/@build
|
||
$(MB_@RECIPE)$$(if $$(wildcard $(7)/$(3).out),,$$(call mb_make_call,mb_os_file_delete,$(7)/$(3).out))
|
||
$(MB_@RECIPE)$$(call mb_make_call,mb_msxpipe_safe_assert,$(7),$(3) > $(3).out,$(6))
|
||
$(MB_@RECIPE)grep -q $(4) $(7)/$(3).out
|
||
$(MB_@RECIPE)$$(call mb_make_call,mb_os_echo_assert,$$(MB_I18N_ASSERT_SUCCESS) $(1)/@assert/$(2)/$(5))
|
||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_doc_target,$(1)/@assert/$(5)/$(2),"Asserts that $(3) output matches.")
|
||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_make_target_phony,$(1)/@assert/$(5)/$(2))
|
||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_proj_grow_deps_phase,$(5),$(1)/@assert/$(5)/$(2))
|
||
|
||
.RECIPEPREFIX := $(MB_@RECIPEPREFIX)
|
||
endef
|
||
define mb_flow_assert_msxpipe_grep_test
|
||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_make_check_arg5,$(0),$(1),$(2),$(3),$(4),$(5))
|
||
$(MB_ᕽᕽᕽ )$(eval $(call mb_make_call,mb_flow_clone_deps,$(1)-assert/@test-$(3),$(1),$(2),$(6),$(7)))
|
||
$(MB_ᕽᕽᕽ )$(eval $(call mb_make_call,__mb_flow_assert_msxpipe_grep_x,$(1),$(3),$(4),$(5),@test,$(7),$(1)-assert/@test-$(3)))
|
||
endef
|
||
$(call mb_make_call,mb_doc_function_flow,mb_flow_assert_msxpipe_grep_test,"Inject flow of single grep assert.","<build-dir> <deps> <test-id> <cmd-name> <grep-match> [packages] [machine]")
|
||
define mb_flow_assert_msxpipe_grep_package_qa
|
||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_make_check_arg5,$(0),$(1),$(2),$(3),$(4),$(5))
|
||
$(MB_ᕽᕽᕽ )$(eval $(call mb_make_call,mb_flow_clone_deps,$(1)-assert/@package-qa-$(3),$(1),$(2),$(6),$(7)))
|
||
$(MB_ᕽᕽᕽ )$(eval $(call mb_make_call,__mb_flow_assert_msxpipe_grep_x,$(1),$(3),$(4),$(5),@package-qa,$(7),$(1)-assert/@package-qa-$(3)))
|
||
endef
|
||
$(call mb_make_call,mb_doc_function_flow,mb_flow_assert_msxpipe_grep_package_qa,"Inject flow of single grep assert.","<build-dir> <deps> <test-id> <cmd-name> <grep-match> [packages] [machine]")
|
||
|
||
|