Skip to content

Commit ac230d9

Browse files
authored
Fix mass testing
b2be380 inadvertently changed MASS_TESTING_CMDLINE to be a read-only variable. This causes mass testing to fail, since in mass testing the value of MASS_TESTING_CMDLINE is set to the command line for each child test.
1 parent 42e3f4e commit ac230d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

testssl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ HNAME="${HNAME%%.*}"
145145

146146
declare CMDLINE
147147
declare -r -a CMDLINE_ARRAY=("$@") # When performing mass testing, the child processes need to be sent the
148-
declare -r -a MASS_TESTING_CMDLINE # command line in the form of an array (see #702 and http://mywiki.wooledge.org/BashFAQ/050).
148+
declare -a MASS_TESTING_CMDLINE # command line in the form of an array (see #702 and http://mywiki.wooledge.org/BashFAQ/050).
149149

150150

151151
########### Some predefinitions: date, sed (we always use test and not try to determine

0 commit comments

Comments
 (0)