Changeset c0c8962
- Timestamp:
- May 28, 2021, 2:12:17 PM (3 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- e72969a
- Parents:
- cece53c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/jenkins/setup.sh.in
rcece53c rc0c8962 30 30 { 31 31 local elfout=$(readelf -d $1 | grep "RUNPATH") 32 regex= "\[/([[:alpha:]/@_-\.[:digit:]]+)\]"32 regex='\[/([[:alpha:][:digit:]@/_.-]+)\]' 33 33 if [[ $elfout =~ $regex ]]; then 34 34 local myRPath=${BASH_REMATCH[1]} … … 46 46 retlcldeps=() 47 47 while IFS= read -r line; do 48 regex1= "/([[:alpha:]/@_-\.[:digit:]]+)"49 regex2= "(libcfa[[:alpha:]\.[:digit:]]+) => not found"50 regex3= "linux-vdso.so.1"48 regex1='/([[:alpha:][:digit:]@/_.-]+)' 49 regex2='(libcfa[[:alpha:][:digit:].]+) => not found' 50 regex3='linux-vdso.so.1' 51 51 if [[ $line =~ $regex1 ]]; then 52 52 retsysdeps+=(${BASH_REMATCH[1]}) … … 123 123 do 124 124 # find the test's name 125 regex= "tests/crashes/[[[:alpha:]/-]+/([[:alpha:]/\@_\-\.[:digit:]]+)/exe"125 regex='tests/crashes/[[[:alpha:]/-]+/([[:alpha:][:digit:]@/_.-]+)/exe' 126 126 if [[ $pgm =~ $regex ]]; then 127 127 name=${BASH_REMATCH[1]}
Note: See TracChangeset
for help on using the changeset viewer.