From d0d186960454135b8080123404302c741facfd4b Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Wed, 19 Oct 2016 21:39:43 +0200 Subject: [PATCH] Fix test? --- doc/help-output.txt | 9 --------- test/help_output_test.sh | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/doc/help-output.txt b/doc/help-output.txt index c17d27fd..021aeba1 100644 --- a/doc/help-output.txt +++ b/doc/help-output.txt @@ -257,12 +257,3 @@ Global options: -display-combi [string] The display name of this browser combi (File) -Monitor layout: - ID: 0 - name: screen - position: 0,0 - size: 1280,1024 - -For more information see: man rofi -Bugreports: https://github.com/DaveDavenport/rofi/ -Support: #rofi @ freenode.net diff --git a/test/help_output_test.sh b/test/help_output_test.sh index e44c024c..b5f96388 100755 --- a/test/help_output_test.sh +++ b/test/help_output_test.sh @@ -2,7 +2,7 @@ TOP_DIR=$1 -rofi -h -config ${TOP_DIR}/doc/test_xr.txt | grep -v "Version"> help-output.txt +rofi -h -config ${TOP_DIR}/doc/test_xr.txt | awk 'BEGIN{ found=1} /^Monitor/{found=0} {if (found) print }' > help-output.txt if ! diff help-output.txt ${TOP_DIR}/doc/help-output.txt > /dev/null then