From 5b54c003db9a7b7c6c2d2ca70db45c6a4a5ede70 Mon Sep 17 00:00:00 2001 From: whoami-rajat Date: Thu, 14 Mar 2019 11:01:18 +0530 Subject: [PATCH] Fix : sort variables fetched from env list In bionic, when exporting env variables, the env list displays variables in unsorted format. While fetching we are getting 'https_proxy' before 'http_proxy' which is failing in comparison to our expected values[1]. This patch sorts the variables fetched from env. [1] http://logs.openstack.org/30/643130/3/check/devstack-unit-tests/effbf7a/job-output.txt.gz#_2019-03-13_23_12_35_465026 Change-Id: Ie504eabf0d3fec1b97bc711e2702c06bcf75d158 (cherry picked from commit deadc7c439f1126ba986b9c4f3c4d0b6d7774016) --- tests/test_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_functions.sh b/tests/test_functions.sh index adf20cdb80..08143d2a68 100755 --- a/tests/test_functions.sh +++ b/tests/test_functions.sh @@ -272,7 +272,7 @@ function test_export_proxy_variables { export_proxy_variables expected=$(echo -e "http_proxy=$http_proxy\nhttps_proxy=$https_proxy\nno_proxy=$no_proxy") - results=$(env | egrep '(http(s)?|no)_proxy=') + results=$(env | egrep '(http(s)?|no)_proxy=' | sort) if [[ $expected = $results ]]; then passed "OK: Proxy variables are exported when proxy variables are set" else