From 7265600d63c76349d097f7f86339c87c35ac2663 Mon Sep 17 00:00:00 2001 From: Tomasz Zawadzki Date: Mon, 2 Mar 2020 08:04:29 -0500 Subject: [PATCH] test/common: do not double exclude autotest_common.sh No need to exclude the autotest_common.sh twice when creating test list. Signed-off-by: Tomasz Zawadzki Change-Id: Ice7be31a9d7d284dd411ebfd3854e075b37c0275 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1088 Reviewed-by: Shuhei Matsumoto Reviewed-by: Darek Stojaczyk Tested-by: SPDK CI Jenkins --- test/common/autotest_common.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/test/common/autotest_common.sh b/test/common/autotest_common.sh index 2ded921ba..247e89874 100644 --- a/test/common/autotest_common.sh +++ b/test/common/autotest_common.sh @@ -340,7 +340,6 @@ function timing_finish() { function create_test_list() { grep -rshI --include="*.sh" --exclude="autotest_common.sh" \ - --exclude="$rootdir/test/common/autotest_common.sh" \ -e "run_test " $rootdir | grep -v "#" \ | sed 's/^.*run_test/run_test/' | awk '{print $2}' | \ sed 's/\"//g' | sort > $output_dir/all_tests.txt || true