changes to command timing with errexit; binary file checks; treat exit builtin slightly differently when using bash -c

This commit is contained in:
Chet Ramey
2021-09-19 13:44:55 -04:00
parent 4410784029
commit 9928dcb48f
25 changed files with 3484 additions and 3042 deletions
+6
View File
@@ -759,3 +759,9 @@ declare -a bug2=([0]="")
declare -a bug3=([0]="" [1]="5" [2]="" [3]="1" [4]="")
declare -a not_bug=([0]="no" [1]="nulls")
declare -a workaround=([0]="")
declare -a var=([0]=$'\001\001\001\001')
declare -a foo=([0]=$'\001\001\001\001')
declare -a foo=([0]=$'\001\001')
declare -a foo=([0]=$'\001\001')
declare -A foo=([v]=$'\001\001' )
declare -A foo=([v]=$'\001\001' )