You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: DH-20317: Move wildcard test case into java (#409)
* First pass at wildcards for test cases
* Change test case regex to wildcard
* Add debug for bad command
* Add debug for bad command
* Quoting issues
* Cleaned up naming from regex
* Echo run benchmark arguments
* Debug code
* Try disabling wildcard expansion
* fixed tabs
* Sigh
* more debug for asterisk
* Trial and error for asterisk passing
* Again
* Again
* Debug
* Debug
* Debug
* Debug
* Try ampersand with args
* More asterisk fun
* Debug asterisk
* More asterisk debug
* Asterisk
* a1000
* a1001
* a1002
* a1003
* a1004
* a1005
* a1006
* spaces again
* Upgraded the barrage client and other versions
* Updated adhoc docker service versions
* Updated docker compose versions
* Remvoed Keyed Transpose experimental test.
* Removed some debug
* Removed more debug
Copy file name to clipboardExpand all lines: .github/scripts/run-benchmarks-remote.sh
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
set -o errexit
4
4
set -o pipefail
5
5
set -o nounset
6
+
set -f
6
7
7
8
# Copyright (c) 2023-2024 Deephaven Data Labs and Patent Pending
8
9
@@ -13,7 +14,7 @@ set -o nounset
13
14
# Note: Assumes the deephaven-benchmark-*.jar artifact has been built and placed
14
15
15
16
if [[ $#!= 6 ]];then
16
-
echo"$0: Missing run type, test package, test regex, row count, distribution, or tag name"
17
+
echo"$0: Missing run type, test package, test classes, row count, distribution, or tag name"
17
18
exit 1
18
19
fi
19
20
@@ -39,9 +40,11 @@ title "- Running Remote Benchmark Artifact on ${HOST} -"
39
40
cd${DEEPHAVEN_DIR};
40
41
41
42
title "-- Running Benchmarks --"
43
+
set +f
42
44
cd${RUN_DIR}
43
45
cat ${RUN_TYPE}-scale-benchmark.properties | sed 's|${baseRowCount}|'"${ROW_COUNT}|g"| sed 's|${baseDistrib}|'"${DISTRIB}|g"> scale-benchmark.properties
0 commit comments