From 13f26431057323f14db31c0b5b009e708d03f3e1 Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Fri, 16 Mar 2018 00:52:44 +0100 Subject: [PATCH] Don't use default path for multi_instance test --- sub_scripts/testing_process.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/sub_scripts/testing_process.sh b/sub_scripts/testing_process.sh index be45b3e..1792e50 100644 --- a/sub_scripts/testing_process.sh +++ b/sub_scripts/testing_process.sh @@ -865,8 +865,13 @@ CHECK_MULTI_INSTANCE () { local manifest_args_mod="$manifest_arguments" # Replace manifest key for the test - replace_manifest_key "path" "$test_path" - check_path=$test_path + if [ "$install_type" = "subdir" ]; then + local check_path=$test_path + elif [ "$install_type" = "root" ]; then + local check_path=/ + fi + replace_manifest_key "path" "$check_path" + replace_manifest_key "user" "$test_user" replace_manifest_key "public" "$public_public_arg"