@@ -56,9 +56,9 @@ prepare_conf_file() {
56
56
57
57
# Set a custom state, network and cookie cache dirs.
58
58
#
59
- # We're pointing all three dirs at the same location, so users will find all
60
- # cached data in that single location. We can introduce more env vars and use
61
- # them to set the cache dirs separately if needed.
59
+ # We're pointing all three cache dirs at the same location, so users will find
60
+ # all cached data in that single location. We can introduce more env vars and
61
+ # use them to set the cache dirs separately if needed.
62
62
if [[ -n " ${ZEBRA_CACHE_DIR} " ]]; then
63
63
mkdir -p " ${ZEBRA_CACHE_DIR// \" / } "
64
64
chown -R " ${UID} :${GID} " " ${ZEBRA_CACHE_DIR// \" / } "
@@ -107,7 +107,7 @@ prepare_conf_file() {
107
107
108
108
# Runs cargo test with an arbitrary number of arguments.
109
109
#
110
- # ## Positional Parameters
110
+ # Positional Parameters
111
111
#
112
112
# - '$1' must contain
113
113
# - either cargo FEATURES as described here:
@@ -121,25 +121,19 @@ run_cargo_test() {
121
121
shift
122
122
123
123
# Start constructing the command array
124
- local cmd_args=(
125
- cargo test --locked --release
126
- --features " ${features} "
127
- --package zebrad
128
- --test acceptance
129
- -- --nocapture --include-ignored
130
- )
124
+ local cmd=" cargo test --locked --release --features ${features} --package zebrad --test acceptance -- --nocapture --include-ignored"
131
125
132
126
# Loop through the remaining arguments
133
127
for arg in " $@ " ; do
134
128
if [[ -n ${arg} ]]; then
135
129
# If the argument is non-empty, add it to the command
136
- cmd_args +=(" ${arg} " )
130
+ cmd +=(" ${arg} " )
137
131
fi
138
132
done
139
133
140
- echo " Running: ${cmd_args [*]} "
134
+ echo " Running: ${cmd [*]} "
141
135
# Execute directly to become PID 1
142
- exec_as_user " ${cmd_args [@]} "
136
+ exec_as_user " ${cmd [@]} "
143
137
}
144
138
145
139
# Runs tests depending on the env vars.
0 commit comments