Skip to content

Commit 24c710e

Browse files
committed
bats tests - IRODS version macros, params
1 parent 6cf1bc7 commit 24c710e

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

irods/test/harness/000_install-irods.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:20.04
1+
FROM ubuntu:22.04
22
COPY install.sh /
33
ARG irods_package_version
44
ENV IRODS_PACKAGE_VERSION "$irods_package_version"

irods/test/harness/install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ ________"
116116
;;
117117

118118
4)
119-
IRODS_TO_INSTALL=`irods_package_version`
120-
sudo apt install -y irods-{dev,runtime}${IRODS_TO_INSTALL=:+"=$IRODS_TO_INSTALL="}
119+
IRODS_TO_INSTALL=`irods_package_vsn`
120+
sudo apt install -y irods-{dev,runtime}${IRODS_TO_INSTALL:+"=$IRODS_TO_INSTALL"}
121121
if [[ $with_opts != *\ basic\ * ]]; then
122-
sudo apt install -y irods-{icommands,server,database-plugin-postgres}${IRODS_TO_INSTALL=:+"=$IRODS_TO_INSTALL="}
122+
sudo apt install -y irods-{icommands,server,database-plugin-postgres}${IRODS_TO_INSTALL:+"=$IRODS_TO_INSTALL"}
123123
fi
124124
;;
125125

irods/test/harness/test_script_parameters

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare -A wrapper_arglist=(
44
[demo.sh]="arg1 arg2"
55
[demo_A.sh]="arg1-a arg2-a"
6-
[login_auth_test.py]="TestLogins"
6+
[login_auth_test_must_run_manually.py]="-v TestLogins"
77
[login_auth_test_1.py]="-v TestAnonymousUser TestMiscellaneous"
88
[login_auth_test_2.py]="-v TestWithSSL"
99
)

0 commit comments

Comments
 (0)