diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2006-01-05 00:26:37 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2006-01-05 00:26:37 +0000 |
commit | 270561dd09f1c2c0b558e65d834d6badcb55be40 (patch) | |
tree | 226a228a6e12cee0128b3a9beb9b9adc45d624f3 /test/test.sh | |
parent | fe31c1468549cc3dd28359060c8b292fcfcb3885 (diff) | |
download | wireshark-270561dd09f1c2c0b558e65d834d6badcb55be40.tar.gz wireshark-270561dd09f1c2c0b558e65d834d6badcb55be40.tar.bz2 wireshark-270561dd09f1c2c0b558e65d834d6badcb55be40.zip |
add missing keys 4-9
svn path=/trunk/; revision=16944
Diffstat (limited to 'test/test.sh')
-rw-r--r-- | test/test.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/test.sh b/test/test.sh index 8e43a2fb0d..8fc09b574a 100644 --- a/test/test.sh +++ b/test/test.sh @@ -133,6 +133,36 @@ do menu_title[MENU_LEVEL]=${test_title[3]} menu_function[MENU_LEVEL]=${test_function[3]} ;; + "4") + let "MENU_LEVEL += 1" + menu_title[MENU_LEVEL]=${test_title[4]} + menu_function[MENU_LEVEL]=${test_function[4]} + ;; + "5") + let "MENU_LEVEL += 1" + menu_title[MENU_LEVEL]=${test_title[5]} + menu_function[MENU_LEVEL]=${test_function[5]} + ;; + "6") + let "MENU_LEVEL += 1" + menu_title[MENU_LEVEL]=${test_title[6]} + menu_function[MENU_LEVEL]=${test_function[6]} + ;; + "7") + let "MENU_LEVEL += 1" + menu_title[MENU_LEVEL]=${test_title[7]} + menu_function[MENU_LEVEL]=${test_function[7]} + ;; + "8") + let "MENU_LEVEL += 1" + menu_title[MENU_LEVEL]=${test_title[8]} + menu_function[MENU_LEVEL]=${test_function[8]} + ;; + "9") + let "MENU_LEVEL += 1" + menu_title[MENU_LEVEL]=${test_title[9]} + menu_function[MENU_LEVEL]=${test_function[9]} + ;; esac done
\ No newline at end of file |