Skip to content

Commit b6ff306

Browse files
committed
clean debug
1 parent 1543fe0 commit b6ff306

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

irods/test/harness/test_script_parameters

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff 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

4542
declare -A user=(
46-
[test000_run_suite_locally.sh]=root
43+
[run_suite_locally.sh]=root
4744
)
4845

4946
# keys for WorkDir refer to user

irods/test/login_auth_test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ LOCAL_ACCOUNT_ENV_FILE=~/.irods/irods_environment.json
99
cannot_iinit=''
1010
tries=8
1111
while 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
1515
done
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

1818
setup_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

0 commit comments

Comments
 (0)