X-Git-Url: http://git.monstr.eu/?a=blobdiff_plain;f=tools%2Fbootconfig%2Ftest-bootconfig.sh;h=f68e2e9eef8b27223f753399dab743f370318d69;hb=d6498af58f5c7fb7b252f4791620fe4dd7213ca3;hp=baed891d0ba4969a9b13fbe335898fee8661a0c1;hpb=d8355e740f419a081796e869bafdfc0756b0bf2a;p=linux-2.6-microblaze.git diff --git a/tools/bootconfig/test-bootconfig.sh b/tools/bootconfig/test-bootconfig.sh index baed891d0ba4..f68e2e9eef8b 100755 --- a/tools/bootconfig/test-bootconfig.sh +++ b/tools/bootconfig/test-bootconfig.sh @@ -26,7 +26,7 @@ trap cleanup EXIT TERM NO=1 xpass() { # pass test command - echo "test case $NO ($3)... " + echo "test case $NO ($*)... " if ! ($@ && echo "\t\t[OK]"); then echo "\t\t[NG]"; NG=$((NG + 1)) fi @@ -34,7 +34,7 @@ xpass() { # pass test command } xfail() { # fail test command - echo "test case $NO ($3)... " + echo "test case $NO ($*)... " if ! (! $@ && echo "\t\t[OK]"); then echo "\t\t[NG]"; NG=$((NG + 1)) fi