btrfs-progs: tests: 006-image-on-missing-device: fix btrfs tool path
authorLuis Henriques <henrix@camandro.org>
Mon, 4 Jul 2016 22:48:47 +0000 (23:48 +0100)
committerDavid Sterba <dsterba@suse.com>
Wed, 13 Jul 2016 16:44:33 +0000 (18:44 +0200)
If btrfs isn't in the path, this test will fail with:

    [TEST/misc]   006-image-on-missing-device
failed: btrfs fi show /dev/loop0
test failed for case 006-image-on-missing-device
Makefile:226: recipe for target 'test-misc' failed
make: *** [test-misc] Error 1

Fix the test script by adding $TOP to the path.

Signed-off-by: Luis Henriques <henrix@camandro.org>
[ updated to full command names ]
Signed-off-by: David Sterba <dsterba@suse.com>
tests/misc-tests/006-image-on-missing-device/test.sh

index 8680a70..b22a95d 100755 (executable)
@@ -61,12 +61,12 @@ test_run()
        run_check $SUDO_HELPER umount $TEST_MNT
 
        test_image_dump
-       run_check btrfs fi show $dev1
+       run_check $TOP/btrfs filesystem show $dev1
        # create a degraded raid1 filesystem, check must succeed
        # btrfs-image must not loop
        run_mayfail wipefs -a $dev2
        run_check $SUDO_HELPER losetup -d $dev2
-       run_check btrfs fi show $dev1
+       run_check $TOP/btrfs filesystem show $dev1
 
        test_image_dump
 }