From 107ca984e02fe5af2d25c6dd8873a7d22cb74670 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Josef=20=C5=A0pa=C4=8Dek?= Date: Mon, 9 Oct 2023 13:52:50 +0200 Subject: [PATCH] Fix description of test This is not running on OpenShift --- test/run | 4 ++-- test/run-modfcgid | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/run b/test/run index fbd239d..9b8620f 100755 --- a/test/run +++ b/test/run @@ -303,7 +303,7 @@ function test_scl_variables_in_dockerfile() { function test_from_dockerfile(){ info "Check building using a Dockerfile" - ct_test_app_dockerfile $test_dir/examples/from-dockerfile/${VERSION}/Dockerfile 'https://github.com/sclorg/dancer-ex.git' 'Welcome to your Dancer application on OpenShift' app-src + ct_test_app_dockerfile $test_dir/examples/from-dockerfile/${VERSION}/Dockerfile 'https://github.com/sclorg/dancer-ex.git' 'Welcome to your Dancer application' app-src t1=$? if [ "$t1" == "0" ]; then echo "test 1 from_dockerfile passed"; @@ -311,7 +311,7 @@ function test_from_dockerfile(){ ct_check_testcase_result $t1 info "Check building using a Dockerfile.s2i" - ct_test_app_dockerfile $test_dir/examples/from-dockerfile/${VERSION}/Dockerfile.s2i 'https://github.com/sclorg/dancer-ex.git' 'Welcome to your Dancer application on OpenShift' app-src + ct_test_app_dockerfile $test_dir/examples/from-dockerfile/${VERSION}/Dockerfile.s2i 'https://github.com/sclorg/dancer-ex.git' 'Welcome to your Dancer application' app-src t2=$? if [[ "$t2" == "0" ]];then echo "test 2 from_dockerfile passed"; diff --git a/test/run-modfcgid b/test/run-modfcgid index 3fa7496..930cbd4 100755 --- a/test/run-modfcgid +++ b/test/run-modfcgid @@ -399,7 +399,7 @@ test_npm() { function test_from_dockerfile(){ info "Check building using a Dockerfile" - ct_test_app_dockerfile $test_dir/examples/from-dockerfile/${VERSION}/Dockerfile 'https://github.com/sclorg/dancer-ex.git' 'Welcome to your Dancer application on OpenShift' app-src + ct_test_app_dockerfile $test_dir/examples/from-dockerfile/${VERSION}/Dockerfile 'https://github.com/sclorg/dancer-ex.git' 'Welcome to your Dancer application' app-src t1=$? if [ "$t1" == "0" ]; then echo "test 1 from_dockerfile passed"; @@ -407,7 +407,7 @@ function test_from_dockerfile(){ ct_check_testcase_result $t1 info "Check building using a Dockerfile.s2i" - ct_test_app_dockerfile $test_dir/examples/from-dockerfile/${VERSION}/Dockerfile.s2i 'https://github.com/sclorg/dancer-ex.git' 'Welcome to your Dancer application on OpenShift' app-src + ct_test_app_dockerfile $test_dir/examples/from-dockerfile/${VERSION}/Dockerfile.s2i 'https://github.com/sclorg/dancer-ex.git' 'Welcome to your Dancer application' app-src t2=$? if [[ "$t2" == "0" ]];then echo "test 2 from_dockerfile passed";