X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=tests%2Ftest-imagex;h=177cd2b3aa89a9553607108c7a88d2014f063647;hb=4f9ccdbed3ee79171d0b861c4ba93b54ce8feaac;hp=1931c05f2ae76a05154e653e6b2b54518006a3c7;hpb=e8c3ca2d1d0cac3d64985b45a9f654d2029a7518;p=wimlib diff --git a/tests/test-imagex b/tests/test-imagex index 1931c05f..177cd2b3 100755 --- a/tests/test-imagex +++ b/tests/test-imagex @@ -175,7 +175,7 @@ if ! test "`imagex info dir.wim | grep 'Image Count' | awk '{print $3}'`" = 2; t fi echo "Testing appending WIM image with existing name (this should generate errors)" -if imagex append dir2 dir.wim; then +if imagex append dir2 dir.wim "dir"; then error "Adding duplicate image name didn't fail" fi echo "Testing appending WIM image with new name" @@ -190,7 +190,7 @@ if ! test "`imagex info dir.wim | grep Integrity | awk '{print $3}'`" = "yes"; t error "Integrity table not set correctly on image append" fi echo "Testing appending WIM image with no integrity check" -if ! imagex append dir2 dir.wim "newname3"; then +if ! imagex append dir2 dir.wim "newname3" --nocheck; then error "Appending WIM image failed" fi if ! test "`imagex info dir.wim | grep Integrity | awk '{print $3}'`" = "no"; then @@ -386,7 +386,7 @@ for flag in "--compress=none" "--compress=maximum" "--compress=fast"; do fi # Unsupported, should fail - if imagex info tmp.swm --boot 0; then + if imagex info tmp.swm --boot 1; then error "Should not have been able to change boot index of split WIM" fi echo "Joining the split WIMs and applying the result" @@ -429,7 +429,7 @@ if test "`imagex info new.wim | grep 'Image Count' | awk '{print $3}'`" != 2; th error "Exporting single image to existing WIM wasn't done correctly" fi echo "Testing export of single image to existing WIM using wrong compression type" -if imagex export dir.wim dir2 new.wim newname --compress=maximum; then +if imagex export dir.wim dir2 new.wim newname --compress=xpress; then error "Successfully exported image using wrong compression type" fi rm -f new.wim