From cd6c646b1a9a205e2367df4cdb120b86605a46b8 Mon Sep 17 00:00:00 2001 From: Ayush Ranjan Date: Fri, 9 Feb 2024 16:59:48 -0800 Subject: [PATCH] Run docker-tests with default flags. A previous change mistakenly started running docker-tests with --overlay=none. Fixes 1b7a4e2a055c ("Prepare to make root overlay the default.") PiperOrigin-RevId: 605769213 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 205a727af..36b6072e9 100644 --- a/Makefile +++ b/Makefile @@ -322,7 +322,7 @@ portforward-tests: load-basic_redis load-basic_nginx $(RUNTIME_BIN) INTEGRATION_TARGETS := //test/image:image_test //test/e2e:integration_test docker-tests: load-basic $(RUNTIME_BIN) - @$(call install_runtime,$(RUNTIME),--overlay2=none) + @$(call install_runtime,$(RUNTIME),) # Clear flags. @$(call install_runtime,$(RUNTIME)-fdlimit,--fdlimit=2000) # Used by TestRlimitNoFile. @$(call install_runtime,$(RUNTIME)-dcache,--fdlimit=2000 --dcache=100) # Used by TestDentryCacheLimit. @$(call install_runtime,$(RUNTIME)-host-uds,--host-uds=all) # Used by TestHostSocketConnect.