From 6783c75b3bc9420408f59bc799c429190443ae3e Mon Sep 17 00:00:00 2001 From: Nikolay Borisov Date: Tue, 7 Nov 2017 18:44:11 +0200 Subject: [PATCH] LU-10204 tests: Fix line continuation There is a simple missing in one of the error paths in ladvise_willread_performance which results in an unknown command error. Fix it by adding the missing backslash. Test-Parameters: trivial Signed-off-by: Nikolay Borisov Change-Id: Ifff854c6cf5c1add71fd1571cb4de01d56204fde Reviewed-on: https://review.whamcloud.com/29981 Tested-by: Jenkins Reviewed-by: Andreas Dilger Reviewed-by: Jian Yu Tested-by: Maloo Reviewed-by: James Nunez --- lustre/tests/sanity.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index eb602f6..2e7aa51 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -14795,7 +14795,7 @@ ladvise_willread_performance() local lowest_speedup=20 if [ ${average_cache%.*} -lt $lowest_speedup ]; then - echo "Speedup with OSS cached read less than $lowest_speedup%, " + echo "Speedup with OSS cached read less than $lowest_speedup%," \ "got $average_cache%. Skipping ladvise willread check." return 0 fi -- 1.8.3.1