Skip to content

Commit f1729d1

Browse files
committed
revert some debug changes; push to GitHub for retrial of run-bats-tests
1 parent fcc68c5 commit f1729d1

2 files changed

Lines changed: 3 additions & 14 deletions

File tree

irods/test/login_auth_test.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@ setup_preconnect_preference DONT_CARE
1111
add_irods_to_system_pam_configuration
1212

1313
# Configure clients with admin user but no TLS yet because that requires rescan of config in >= iRODS 5.0
14-
iinit_as_rods || { echo >&2 "couldn't iinit as rods"; exit 2; }
14+
iinit_as_rods >/dev/null 2>&1 || { echo >&2 "couldn't iinit as rods"; exit 2; }
1515

1616
# set up /etc/irods/ssl directory and files
1717
set_up_ssl sudo
1818

19-
exit 121
2019
sudo useradd -ms/bin/bash alissa
2120
sudo chpasswd <<<"alissa:test123"
2221

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,4 @@
11
cd "$(dirname "$0")"
2-
fmt=$(cat <<-EOF
3-
********************
4-
*** %02d ***
5-
********************
6-
EOF
7-
)
8-
for x in {0..9}; do
9-
printf "$fmt\n" $x
10-
for s in test00[1-9]*; do
11-
DOCKER=podman ../harness/docker_container_driver.sh "$s"
12-
done
2+
for s in $*;do
3+
../harness/docker_container_driver.sh "$s" || exit 123
134
done
14-

0 commit comments

Comments
 (0)