virtcontainers: Remove unused parameter from go-test.sh

The check-go-test target passes the path to the mock hook test binary to
go-test.sh when it invokes it.  But go-test.sh just calls run_go_test from
ci/lib.sh, which invokes a script from the tests repo *without* any
parameters.

That is, this parameter is ignored anyway, so remove it.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
David Gibson 2022-03-22 16:39:22 +11:00
parent aa6886f1ed
commit c776bdf4a8

View File

@ -45,8 +45,7 @@ check-go-static:
bash $(MK_DIR)/../../../ci/static-checks.sh bash $(MK_DIR)/../../../ci/static-checks.sh
check-go-test: check-go-test:
bash $(MK_DIR)/../../../ci/go-test.sh \ bash $(MK_DIR)/../../../ci/go-test.sh
$(TEST_BIN_DIR)/$(HOOK_BIN)
# #
# Install # Install