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:
Brendan Zabarauskas 2014-06-18 16:11:44 -07:00 committed by Lars Bergstrom
parent 746ae7625b
commit 6d3687a613

View file

@ -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)