This is an automated email from the ASF dual-hosted git repository.
mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-builds.git
The following commit(s) were added to refs/heads/trunk by this push:
new 4d11d17 In cassandra-test.sh, list the tests in alphabetical sorting
so splits are consistent
4d11d17 is described below
commit 4d11d17fe73872b4cd4ddf58cfddc745e0d528c9
Author: Mick Semb Wever <[email protected]>
AuthorDate: Fri Mar 25 12:41:12 2022 +0100
In cassandra-test.sh, list the tests in alphabetical sorting so splits are
consistent
The order `find` prints the list can change over filesystems and over time.
patch by Mick Semb Wever; reviewed by Brandon Williams
---
build-scripts/cassandra-test.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build-scripts/cassandra-test.sh b/build-scripts/cassandra-test.sh
index 2605b08..e83778c 100755
--- a/build-scripts/cassandra-test.sh
+++ b/build-scripts/cassandra-test.sh
@@ -17,7 +17,7 @@ git --version
# lists all tests for the specific test type
_list_tests() {
local -r classlistprefix="$1"
- find "test/$classlistprefix" -name '*Test.java' | sed
"s;^test/$classlistprefix/;;g"
+ find "test/$classlistprefix" -name '*Test.java' | sed
"s;^test/$classlistprefix/;;g" | sort
}
_split_tests() {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]