Fix mass testing
b2be380b54
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.
This commit is contained in:
parent
42e3f4ea14
commit
ac230d9cce
|
@ -145,7 +145,7 @@ HNAME="${HNAME%%.*}"
|
|||
|
||||
declare CMDLINE
|
||||
declare -r -a CMDLINE_ARRAY=("$@") # When performing mass testing, the child processes need to be sent the
|
||||
declare -r -a MASS_TESTING_CMDLINE # command line in the form of an array (see #702 and http://mywiki.wooledge.org/BashFAQ/050).
|
||||
declare -a MASS_TESTING_CMDLINE # command line in the form of an array (see #702 and http://mywiki.wooledge.org/BashFAQ/050).
|
||||
|
||||
|
||||
########### Some predefinitions: date, sed (we always use test and not try to determine
|
||||
|
|
Loading…
Reference in New Issue