From 1c5891e24b900a048a33d347e4233db01a469b96 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Tue, 31 Dec 2013 16:22:38 -0500 Subject: [PATCH] Reorder options in cdthulHu order. --- test/run-tests.sh | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/test/run-tests.sh b/test/run-tests.sh index 430ef946..3f6125fd 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -23,16 +23,18 @@ usage () { echo " ALLEGRO64DIR, ALLEGRO64SDIR (64-bit Allegro and SMP Allegro, respectively), ALLEGRODIR, and" echo " ALLEGROSDIR." echo "OPTIONS:" - echo " -d -- debug mode" + echo " -c -- clean load test." + echo " -d -- debug mode." + echo " -t -- test interactively." echo " -h -- show this message." echo " -u -- upgrade tests." - echo " -c -- clean load test" - echo " -l -- load systems tests" - echo " -t -- test interactively" - echo " -H -- extract all asdf versions to upgrade from" + echo " -l -- load systems tests." + echo " -H -- extract all asdf versions to upgrade from." + echo " -u -- upgrade tests, we already told you." } unset DEBUG_ASDF_TEST upgrade clean_load load_systems test_interactively extract_all + SHELL=/bin/sh export SHELL DEBUG_ASDF_TEST GCL_ANSI ASDF_OUTPUT_TRANSLATIONS @@ -65,28 +67,28 @@ fi while getopts "cdtHulhu" OPTION do case $OPTION in + c) + clean_load=t + ;; d) DEBUG_ASDF_TEST=t ;; + t) + test_interactively=t + ;; + h) + usage + exit 1 + ;; u) upgrade=t ;; - c) - clean_load=t - ;; l) load_systems=t ;; - t) - test_interactively=t - ;; H) extract_all=t ;; - h) - usage - exit 1 - ;; esac done shift $(($OPTIND - 1)) -- GitLab