From 9a526209ad030a2c099d564e81a28d9dc0034a72 Mon Sep 17 00:00:00 2001 From: Sonia Sharma Date: Mon, 5 Feb 2018 10:53:00 -0800 Subject: [PATCH] LU-10210 tests: Add lustre_routes_conversion script in PATH Fix the typo in test-framework.sh so that test_67 in conf-sanity.sh find lustre_routes_conversion script when running out of build tree. Fixing the typo in test-framework.sh for exporting LUSTRE_ROUTES_CONVERSION to pick the lustre_routes_conversion script from $LUSTRE/scripts so that it is visible when running out of build tree. Change-Id: I1bd9a28e036b9c7b60eaa9886e641610d414c8ee Test-Parameters: trivial testlist=conf-sanity Signed-off-by: Sonia Sharma Reviewed-on: https://review.whamcloud.com/31173 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Jian Yu Reviewed-by: James Nunez Reviewed-by: Oleg Drokin --- lustre/tests/test-framework.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 4b7e0db..18245f9 100755 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -293,7 +293,7 @@ init_test_env() { export LUSTRE_RMMOD=${LUSTRE_RMMOD:-$LUSTRE/scripts/lustre_rmmod} [ ! -f "$LUSTRE_RMMOD" ] && export LUSTRE_RMMOD=$(which lustre_rmmod 2> /dev/null) - export LUSTRE_ROUTES_COVERSION=${LUSTRE_ROUTES_CONVERSION:-$LUSTRE/scripts/lustre_routes_conversion} + export LUSTRE_ROUTES_CONVERSION=${LUSTRE_ROUTES_CONVERSION:-$LUSTRE/scripts/lustre_routes_conversion} [ ! -f "$LUSTRE_ROUTES_CONVERSION" ] && export LUSTRE_ROUTES_CONVERSION=$(which lustre_routes_conversion 2> /dev/null) export LFS_MIGRATE=${LFS_MIGRATE:-$LUSTRE/scripts/lfs_migrate} -- 1.8.3.1