Magellan Linux

Diff of /tags/grubby-8_30/test.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1741 by niro, Sat Feb 18 01:04:10 2012 UTC revision 1856 by niro, Mon Jul 2 13:13:49 2012 UTC
# Line 82  oneDisplayTest() { Line 82  oneDisplayTest() {
82    
83      echo "$testing ... $mode $cfg $correct"      echo "$testing ... $mode $cfg $correct"
84      runme=( ./grubby "$mode" $BIO -c "$cfg" "$@" )      runme=( ./grubby "$mode" $BIO -c "$cfg" "$@" )
85      if "${runme[@]}" |& cmp "$correct" > /dev/null; then      if "${runme[@]}" 2>&1 | cmp "$correct" > /dev/null; then
86   (( pass++ ))   (( pass++ ))
87   if $opt_verbose; then   if $opt_verbose; then
88      echo -------------------------------------------------------------      echo -------------------------------------------------------------
89      echo -n "PASS: "      echo -n "PASS: "
90      printf "%q " "${runme[@]}"; echo      printf "%q " "${runme[@]}"; echo
91      "${runme[@]}" |& diff -U30 "$cfg" -      "${runme[@]}" 2>&1 | diff -U30 "$cfg" -
92      echo      echo
93   fi   fi
94      else      else
# Line 96  oneDisplayTest() { Line 96  oneDisplayTest() {
96   echo -------------------------------------------------------------   echo -------------------------------------------------------------
97   echo -n "FAIL: "   echo -n "FAIL: "
98   printf "%q " "${runme[@]}"; echo   printf "%q " "${runme[@]}"; echo
99   "${runme[@]}" |& diff -U30 "$correct" -   "${runme[@]}" 2>&1 | diff -U30 "$correct" -
100   echo   echo
101      fi      fi
102  }  }
# Line 370  grub2Test grub2.1 add/g2-1.3 --add-kerne Line 370  grub2Test grub2.1 add/g2-1.3 --add-kerne
370      --boot-filesystem=/boot/ --copy-default --make-default      --boot-filesystem=/boot/ --copy-default --make-default
371  grub2Test grub2.1 remove/g2-1.4 --remove-kernel=/boot/vmlinuz-2.6.38.2-9.fc15.x86_64 \  grub2Test grub2.1 remove/g2-1.4 --remove-kernel=/boot/vmlinuz-2.6.38.2-9.fc15.x86_64 \
372      --boot-filesystem=/boot/      --boot-filesystem=/boot/
373    grub2Test grub2.5 add/g2-1.5 --add-kernel=/boot/new-kernel.img --title='title' \
374        --initrd=/boot/new-initrd --boot-filesystem=/boot/ --copy-default
375    
376  testing="GRUB2 add initrd"  testing="GRUB2 add initrd"
377  grub2Test grub2.2 add/g2-1.4 --update-kernel=/boot/new-kernel.img \  grub2Test grub2.2 add/g2-1.4 --update-kernel=/boot/new-kernel.img \
# Line 388  grub2DisplayTest grub2.1 debug/g2.1 --ba Line 390  grub2DisplayTest grub2.1 debug/g2.1 --ba
390  testing="GRUB2 display debug success"  testing="GRUB2 display debug success"
391  grub2DisplayTest grub2.1 debug/g2.1.2 --boot-filesystem=/boot --default-kernel --debug  grub2DisplayTest grub2.1 debug/g2.1.2 --boot-filesystem=/boot --default-kernel --debug
392    
393    testing="GRUB2 remove kernel via index"
394    grub2Test grub2.3 remove/g2-1.1 --remove-kernel=1
395    
396    testing="GRUB2 remove kernel via title"
397    grub2Test grub2.3 remove/g2-1.1 --remove-kernel="TITLE=title2"
398    
399    testing="GRUB2 (submenu) remove kernel via index"
400    grub2Test grub2.4 remove/g2-1.2 --remove-kernel=2
401    
402    testing="GRUB2 (submenu) remove kernel via title"
403    grub2Test grub2.4 remove/g2-1.2 --remove-kernel="TITLE=title2"
404    
405  testing="YABOOT add kernel"  testing="YABOOT add kernel"
406  yabootTest yaboot.1 add/y1.1 --copy-default --boot-filesystem=/ --add-kernel=/boot/new-kernel  \  yabootTest yaboot.1 add/y1.1 --copy-default --boot-filesystem=/ --add-kernel=/boot/new-kernel  \
407      --title=newtitle      --title=newtitle

Legend:
Removed from v.1741  
changed lines
  Added in v.1856