mirror of
https://github.com/servo/servo.git
synced 2025-08-09 23:45:35 +01:00
Divide check-ref targets into check-ref-cpu and check-ref-gpu
This allows us to run the CPU and GPU tests individually
This commit is contained in:
parent
746ae7625b
commit
6d3687a613
1 changed files with 10 additions and 4 deletions
14
mk/check.mk
14
mk/check.mk
|
@ -79,13 +79,19 @@ check-servo: $(foreach lib_crate,$(SERVO_LIB_CRATES),check-servo-$(lib_crate)) s
|
|||
@$(call E, check: servo)
|
||||
$(Q)./servo-test
|
||||
|
||||
.PHONY: check-ref
|
||||
check-ref: reftest
|
||||
@$(call E, check: reftests with GPU rendering)
|
||||
$(Q)./reftest $(S)src/test/ref/*.list
|
||||
.PHONY: check-ref-cpu
|
||||
check-ref-cpu: reftest
|
||||
@$(call E, check: reftests with CPU rendering)
|
||||
$(Q)./reftest $(S)src/test/ref/*.list -- -c
|
||||
|
||||
.PHONY: check-ref-gpu
|
||||
check-ref-gpu: reftest
|
||||
@$(call E, check: reftests with GPU rendering)
|
||||
$(Q)./reftest $(S)src/test/ref/*.list
|
||||
|
||||
.PHONY: check-ref
|
||||
check-ref: check-ref-cpu check-ref-gpu
|
||||
|
||||
.PHONY: check-content
|
||||
check-content: contenttest
|
||||
@$(call E, check: contenttests)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue