From 6e8b504efd6db1dd014ca3faa999be1f52259ebf Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Mon, 18 Jul 2016 11:08:26 +0100 Subject: [PATCH] make test should not need a tty Signed-off-by: Justin Cormack --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 59b3756b6..b51872352 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ qemu-arm: Dockerfile.qemu.armhf arm test: Dockerfile.test all docker build -f Dockerfile.test -t mobytest:build . - docker run -it --rm mobytest:build | tee test.log | grep 'Moby test suite PASSED' + docker run --rm mobytest:build | tee test.log | grep 'Moby test suite PASSED' .PHONY: clean