summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-10-19 21:39:43 +0200
committerDave Davenport <qball@gmpclient.org>2016-10-19 21:39:43 +0200
commitd0d186960454135b8080123404302c741facfd4b (patch)
tree387135be9e83451b620c9eba57f3a595495f9bc6
parentba2188d649c4dbb8ceb6303969b02cdda02491f4 (diff)
Fix test?
-rw-r--r--doc/help-output.txt9
-rwxr-xr-xtest/help_output_test.sh2
2 files changed, 1 insertions, 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