File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ declare -A wrappers=(
1515 [PRC_issue_362.bats]=./login_auth_test.sh
1616 [demo.sh]=./demo_hook.sh
1717 [test001_pam_password_expiration.bats]=../login_auth_test.sh
18- [test001.bats]=../login_auth_test.sh
1918 [test002_write_native_credentials_to_secrets_file.bats]=../login_auth_test.sh
2019 [test003_write_pam_credentials_to_secrets_file.bats]=../login_auth_test.sh
2120 [test004_prc_pam_password_internal_secrets_file_generation.bats]=../login_auth_test.sh
@@ -38,12 +37,10 @@ declare -A images=(
3837 [login_auth_test_must_run_manually.py]=ssl-and-pam
3938 [demo_hook.sh]=ssl-and-pam
4039 [run_suite_locally.sh]=compile-specific-python
41- [test000_run_suite_locally.sh]=compile-specific-python
42- [test000.sh]=compile-specific-python
4340)
4441
4542declare -A user=(
46- [test000_run_suite_locally .sh]=root
43+ [run_suite_locally .sh]=root
4744)
4845
4946# keys for WorkDir refer to user
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ LOCAL_ACCOUNT_ENV_FILE=~/.irods/irods_environment.json
99cannot_iinit=' '
1010tries=8
1111while true ; do
12- iinit_as_rods && break
12+ iinit_as_rods > /dev/null 2>&1 && break
1313 [ $(( -- tries)) -le 0 ] && { cannot_iinit=1; break ; }
1414 sleep 5
1515done
16- [ -n " $cannot_iinit " ] && { echo >&2 " Could not iinit as rods after repeated attempts ." ; exit 2; }
16+ [ -n " $cannot_iinit " ] && { echo >&2 " Could not iinit as rods." ; exit 2; }
1717
1818setup_preconnect_preference DONT_CARE
1919
@@ -53,7 +53,7 @@ if [ $server_hup = y ]; then
5353 if ils > /dev/null 2>&1 ; then
5454 break
5555 else
56- # Allow 16 secs of wait time for server .
56+ # Allow ~ 16 secs of total wait time.
5757 [ $(( ++ server_check)) -gt 8 ] && {
5858 echo >&2 " Timed out on server reload" ; exit 3; }
5959 fi
File renamed without changes.
You can’t perform that action at this time.
0 commit comments