From 326e823b7008af44b3f6c50953cb83da62ef5d0a Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Wed, 4 Nov 2020 21:19:40 -0800 Subject: [PATCH] Add a utility makefile target to get shell in docker --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index a2574eb8..fc39d796 100644 --- a/Makefile +++ b/Makefile @@ -82,6 +82,9 @@ simulator-tests: prepare-virtual docker-simulator-tests: BOARD_HARDWARE_PATH="$(BOARD_HARDWARE_PATH)" ./bin/run-docker "make simulator-tests TEST_PATH=\"${TEST_PATH}\"" +docker-bash: + BOARD_HARDWARE_PATH="$(BOARD_HARDWARE_PATH)" ./bin/run-docker "bash" + run-tests: prepare-virtual build-gtest-gmock $(MAKE) -c tests @: # blah