Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadostin Stoyanov <rstoyanov@fedoraproject.org>2021-04-12 09:57:28 +0300
committerAndrei Vagin <avagin@gmail.com>2021-09-03 20:31:00 +0300
commit6c77d722654426f280a27eaf9eb7a1faf66f2899 (patch)
tree69ef017bc98c877740f8f5980bfaf0ee18994876 /Makefile
parent27b9ed53ead066ab916134d51a18107695640f56 (diff)
Makefile: docker-test don't use interactive tty
Running zdtm tests does not require input and therefore it is not necessary to use -it. This change also allows to run the test in CI where it currently fails with: the input device is not a TTY make: *** [Makefile:388: docker-test] Error 1 Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5e9c4c653..b627c2099 100644
--- a/Makefile
+++ b/Makefile
@@ -373,7 +373,7 @@ docker-build:
.PHONY: docker-build
docker-test:
- docker run --rm -it --privileged -v /lib/modules:/lib/modules --network=host --cgroupns=host criu-x86_64 \
+ docker run --rm --privileged -v /lib/modules:/lib/modules --network=host --cgroupns=host criu-x86_64 \
./test/zdtm.py run -a --keep-going --ignore-taint
.PHONY: docker-test