Change hyperkit-test to test-hyperkit

Other test targets are all `test-*`, should be consistent

Signed-off-by: Robb Kistler <robb.kistler@docker.com>
This commit is contained in:
Robb Kistler 2017-04-07 19:04:36 -07:00
parent d15a4e7370
commit 99e1643c82

View File

@ -46,8 +46,8 @@ define check_test_log
@cat $1 |grep -q 'Moby test suite PASSED'
endef
.PHONY: hyperkit-test
hyperkit-test: $(MOBY) test-initrd.img test-bzImage test-cmdline
.PHONY: test-hyperkit
test-hyperkit: $(MOBY) test-initrd.img test-bzImage test-cmdline
rm -f disk.img
script -q /dev/null $(MOBY) run test | tee test.log
$(call check_test_log, test.log)