From fc3b4e9ae1e24d6b553a3fa3b2bd0d9fd20f3f8b Mon Sep 17 00:00:00 2001 From: Andrew Keesler Date: Thu, 10 Sep 2020 09:26:18 -0400 Subject: [PATCH] hack/test-unit.sh: remove this alias to cut down on scripts This script was basically an alias for `./hack/module.sh unittest`. We even tell people to run the unit tests via module.sh in our contributing doc. Let's ditch it - the best line of (shell code) is the one you don't write. An analagous change was made in CI to use module.sh in place of test-unit.sh. Signed-off-by: Andrew Keesler --- hack/test-unit.sh | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100755 hack/test-unit.sh diff --git a/hack/test-unit.sh b/hack/test-unit.sh deleted file mode 100755 index a002fd85..00000000 --- a/hack/test-unit.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -# Copyright 2020 VMware, Inc. -# SPDX-License-Identifier: Apache-2.0 - -set -euo pipefail - -ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )" - -"$ROOT/hack/module.sh" unittest