From 4f689d52e7e6a511fb0de21ccc0b938d57ce6f41 Mon Sep 17 00:00:00 2001 From: Thomas Wood Date: Thu, 30 Oct 2014 15:54:44 +0000 Subject: [PATCH] tests/drm_lib.sh: add a "--help-description" option Signed-off-by: Thomas Wood --- tests/drm_lib.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/drm_lib.sh b/tests/drm_lib.sh index 6a8a3105..c50664c7 100755 --- a/tests/drm_lib.sh +++ b/tests/drm_lib.sh @@ -12,11 +12,16 @@ for arg in $@ ; do --debug) IGT_LOG_LEVEL=debug ;; + --help-description) + echo $IGT_TEST_DESCRIPTION + exit 0 + ;; --help) echo "Usage: `basename $0` [OPTIONS]" echo " --list-subtests" echo " --run-subtest " echo " --debug" + echo " --help-description" echo " --help" exit 0 ;;