summaryrefslogtreecommitdiff
path: root/tests/t1700-probe-fs.sh
Commit message (Collapse)AuthorAgeFilesLines
* tests: XFS requires a minimum size of 300MBrian C. Lane2022-12-131-1/+2
|
* maint: Update copyright statements to 2022Brian C. Lane2022-03-231-1/+1
| | | | By running make update-copyright
* tests: Fix test t1700-probe-fsCristian Klein2021-01-281-1/+1
| | | | | | | | | | | | | mkfs.ext3 (see version below) was complaining that the filesystem is too small for a journal, which made the test fail. ``` $ mkfs.ext3 -V mke2fs 1.45.5 (07-Jan-2020) Using EXT2FS Library version 1.45.5 ``` Signed-off-by: Brian C. Lane <bcl@redhat.com>
* maint: Update copyright statements to 2021Brian C. Lane2021-01-181-1/+1
| | | | By running make update-copyright
* maint: Update copyright statements to 2020Brian C. Lane2020-12-111-1/+1
| | | | By running make update-copyright
* tests: Add f2fs to the fs probe testRomain Perier2020-05-041-1/+1
| | | | | Signed-off-by: Romain Perier <romain.perier@gmail.com> Signed-off-by: Brian C. Lane <bcl@redhat.com>
* maint: Update copyright statements to 2019Brian C. Lane2019-08-121-1/+1
| | | | By running make update-copyright
* Add udf to t1700-probe-fs and to the manpageBrian C. Lane2018-10-161-1/+1
| | | | | If mkfs.udf is installed this will test to make sure that the filesystem is detected.
* tests: Fix t1700 failing on a host with a 4k xfs filesystem (#1260664)Brian C. Lane2016-12-221-6/+6
| | | | | | | | | | | | | | The problem is that mkfs.xfs won't work if the file it is trying to create is on a filesystem with a sector size larger than the passed -ssize value. So a host with 4k disks (eg. s390) and the xfs filesystem will fail with the error message: illegal sector size 512; hw sector is 4096 Failures setting up the environment for the test aren't parted bugs. This stops treating mkfs and dd errors as test failures, skipping the fs and logging a warning. Related: rhbz#1260664
* tests: Change minimum size to 256MiBBrian C. Lane2014-11-101-1/+1
| | | | | btrfs on ppc64 wants 136MiB so expand the minimum temp filesystem size for the t1700-probe-fs test.
* tests: use test's "=" operator, not "=="Jim Meyering2014-05-281-1/+1
| | | | * tests/t1700-probe-fs.sh: Avoid "make syntax-check" error: s/==/=/
* tests: Use mkfs.xfs to create files (#1101112)Brian C. Lane2014-05-271-2/+7
| | | | | | | | | | On s390 there is a bug with mkfs.xfs and pre-existing files. Work around it by creating the file directly with mkfs.xfs. This also works on other arches. * tests/t1700-probe-fs.sh: Check for xfs and use direct file creation * tests/t4100-dvh-partition-limits.sh: Use mkfs.xfs -dfile * tests/t4100-msdos-partition-limits.sh: Use mkfs.xfs -dfile
* tests: Add ntfs vfat hfsplus to t1700 probe testBrian C. Lane2014-05-271-6/+13
| | | | | | | | Add some new filesystems to test. Adjust how mkfs.* tests, since some of them don't support -V, and add fsname so that the printed filesystem name doesn't have to match the type. * tests/t1700-probe-fs.sh: Add new filesystems to test
* maint: run "make update-copyright"Jim Meyering2014-05-251-1/+1
|
* tests: fix t1700Phillip Susi2014-04-181-0/+1
| | | | | | | | bb181a7e: "tests: Use force for xfs in t1700 and a larger file" caused the previous filesystem signatures to be left in the image file causing mkfs.nilfs2 to complain that there is already an xfs filesystem there, and hang the test suite waiting for an answer to proceed or not. Remove the file between filesystems so it is recreated cleanly again.
* tests: t1700 change count to seekBrian C. Lane2014-04-171-2/+2
| | | | | | Fix a typo when changing to sparse images. * tests/t1700-probe-fs.sh: count should be seek.
* tests: Use force for xfs in t1700 and a larger fileBrian C. Lane2014-04-161-4/+6
| | | | | | | Also use sparse files that are (with 512B blocks) 128M so that they are large enough for all the filesystems. * tests/t1700-probe-fs.sh: Make changes.
* tests: Add btrfs and xfs to the fs probe testBrian C. Lane2014-03-021-1/+1
| | | | * tests/tests/t1700-probe-fs.sh: Add btrfs and xfs
* maint: update all copyright year number rangesJim Meyering2013-01-061-1/+1
| | | | Run "make update-copyright".
* maint: update all copyright year number rangesJim Meyering2012-01-011-1/+1
| | | | Run "make update-copyright".
* tests: do not fail if some utilities are missingPetr Uzel2011-03-161-2/+2
| | | | | | | * tests/t1700-probe-fs.sh: Skip the test if mkfs.ext3 or tune2fs is missing or is not in $PATH. Signed-off-by: Petr Uzel <petr.uzel@suse.cz>
* tests: add a minimal nilfs2 testJim Meyering2011-03-051-6/+9
| | | | * tests/t1700-probe-fs.sh: Adapt to also test nilfs2.
* tests: rename a test script, before extending it to handle nilfsJim Meyering2011-03-041-0/+54
* tests/t1700-probe-fs.sh: Rename from ... * tests/t1700-ext-probe.sh: ...this. * tests/Makefile.am (TESTS): Rename it here, too.