Hi folks, The xfstests repository at git://oss.sgi.com/xfs/cmds/xfstests has just been updated. Patches often get missed, so please check if your outstanding patches were in this update. If they have not been in this update, please resubmit them to fstests@xxxxxxxxxxxxxxx so they can be picked up in the next update. -Dave. The new head of the master branch is commit: 481c28f xfs: test larger dump/restore to/from file New Commits: Anna Schumaker (1): [19c805e] common: Re-enable testing over NFS Brian Foster (1): [cf14382] xfs/053: test for stale data exposure via falloc/writeback interaction Dave Chinner (1): [13c2dcb] xfs/007: check correct quota inodes Eric Sandeen (1): [481c28f] xfs: test larger dump/restore to/from file Eryu Guan (17): [edc2d65] btrfs: new test to run btrfs balance and subvolume test simultaneously [dcc48fa] btrfs: new test to run btrfs balance and scrub simultaneously [e6170fd] btrfs: new test to run btrfs balance and defrag operations simultaneously [ff2435a] btrfs: new case to run btrfs balance and remount with different compress algorithms [3712e70] btrfs: new case to run btrfs balance and device replace operations simultaneously [ca8d3f5] btrfs: new case to run btrfs subvolume create/delete operations and device replace simultaneously [0eed4e6] btrfs: new case to run btrfs subvolume create/delete operations and scrub simultaneously [4799f24] btrfs: new case to run btrfs subvolume create/delete and defrag operations simultaneously [067578b] btrfs: new case to run subvolume create/delete and remount with defferent compress algorithms [8dc3354] btrfs: new case to run device replace and scrub operations simultaneously [87c32f6] btrfs: new case to run device replace and defrag operations simultaneously [5160c14] btrfs: new case to run device replace and remount with different compress algorithms simultaneously [1e18397] btrfs: new case to run btrfs scrub and defrag operations simultaneously [5398fca] btrfs: new case to run btrfs scrub and remount with different compress algorithms simultaneously [a1a9f6e] btrfs: new case to run defrag and remount with different compress algorithms simultaneously [b675ef7] btrfs: test mount btrfs subvolume with selinux context [50f2346] xfs/262: update filter to deal with long device name correctly Filipe Manana (1): [edaea8a] btrfs: regression test for btrfs incremental send Jan Kara (1): [82b6904] xfs/287: Make test fail graciously when xfsdump isn't installed Lukas Czerner (2): [a2a1fc6] common: Introduce get_block_size() helper [448efe1] generic/017: Do not create file systems with different block sizes Miklos Szeredi (1): [de161cb] generic: check overwriting rename Wang Shilong (4): [5bdda3d] common: fix test for ltp/fsstress [562af5d] btrfs: add regression for inode bad compression ratio detection [cbf5cd2] btrfs/010: use _extent_count() helper [b5830f4] shared/032: fix fsck failure Code Diffstat: .gitignore | 1 + common/attr | 4 +- common/config | 2 +- common/dump | 9 +- common/punch | 2 +- common/rc | 245 +++++++++++++++++++++++++++++++++++++++++++++-- src/Makefile | 2 +- src/t_rename_overwrite.c | 39 ++++++++ tests/btrfs/010 | 8 +- tests/btrfs/060 | 115 ++++++++++++++++++++++ tests/btrfs/060.out | 2 + tests/btrfs/061 | 114 ++++++++++++++++++++++ tests/btrfs/061.out | 2 + tests/btrfs/062 | 116 ++++++++++++++++++++++ tests/btrfs/062.out | 2 + tests/btrfs/063 | 114 ++++++++++++++++++++++ tests/btrfs/063.out | 2 + tests/btrfs/064 | 122 +++++++++++++++++++++++ tests/btrfs/064.out | 2 + tests/btrfs/065 | 123 ++++++++++++++++++++++++ tests/btrfs/065.out | 2 + tests/btrfs/066 | 115 ++++++++++++++++++++++ tests/btrfs/066.out | 2 + tests/btrfs/067 | 117 ++++++++++++++++++++++ tests/btrfs/067.out | 2 + tests/btrfs/068 | 116 ++++++++++++++++++++++ tests/btrfs/068.out | 2 + tests/btrfs/069 | 123 ++++++++++++++++++++++++ tests/btrfs/069.out | 2 + tests/btrfs/070 | 125 ++++++++++++++++++++++++ tests/btrfs/070.out | 2 + tests/btrfs/071 | 123 ++++++++++++++++++++++++ tests/btrfs/071.out | 2 + tests/btrfs/072 | 116 ++++++++++++++++++++++ tests/btrfs/072.out | 2 + tests/btrfs/073 | 114 ++++++++++++++++++++++ tests/btrfs/073.out | 2 + tests/btrfs/074 | 116 ++++++++++++++++++++++ tests/btrfs/074.out | 2 + tests/btrfs/075 | 70 ++++++++++++++ tests/btrfs/075.out | 2 + tests/btrfs/076 | 74 ++++++++++++++ tests/btrfs/076.out | 3 + tests/btrfs/077 | 148 ++++++++++++++++++++++++++++ tests/btrfs/077.out | 2 + tests/btrfs/group | 18 ++++ tests/generic/017 | 46 ++++----- tests/generic/017.out | 2 - tests/generic/035 | 72 ++++++++++++++ tests/generic/035.out | 3 + tests/generic/240 | 2 +- tests/generic/256 | 2 +- tests/generic/308 | 2 +- tests/generic/group | 1 + tests/shared/032 | 2 +- tests/shared/298 | 2 +- tests/xfs/007 | 78 +++++++-------- tests/xfs/007.out | 4 +- tests/xfs/053 | 101 +++++++++++++++++++ tests/xfs/053.out | 10 ++ tests/xfs/068 | 50 ++++++++++ tests/xfs/068.out | 47 +++++++++ tests/xfs/262 | 12 ++- tests/xfs/287 | 1 + tests/xfs/group | 2 + 65 files changed, 2768 insertions(+), 99 deletions(-) create mode 100644 src/t_rename_overwrite.c mode change 100755 => 100644 tests/btrfs/010 create mode 100755 tests/btrfs/060 create mode 100644 tests/btrfs/060.out create mode 100755 tests/btrfs/061 create mode 100644 tests/btrfs/061.out create mode 100755 tests/btrfs/062 create mode 100644 tests/btrfs/062.out create mode 100755 tests/btrfs/063 create mode 100644 tests/btrfs/063.out create mode 100755 tests/btrfs/064 create mode 100644 tests/btrfs/064.out create mode 100755 tests/btrfs/065 create mode 100644 tests/btrfs/065.out create mode 100755 tests/btrfs/066 create mode 100644 tests/btrfs/066.out create mode 100755 tests/btrfs/067 create mode 100644 tests/btrfs/067.out create mode 100755 tests/btrfs/068 create mode 100644 tests/btrfs/068.out create mode 100755 tests/btrfs/069 create mode 100644 tests/btrfs/069.out create mode 100755 tests/btrfs/070 create mode 100644 tests/btrfs/070.out create mode 100755 tests/btrfs/071 create mode 100644 tests/btrfs/071.out create mode 100755 tests/btrfs/072 create mode 100644 tests/btrfs/072.out create mode 100755 tests/btrfs/073 create mode 100644 tests/btrfs/073.out create mode 100755 tests/btrfs/074 create mode 100644 tests/btrfs/074.out create mode 100755 tests/btrfs/075 create mode 100644 tests/btrfs/075.out create mode 100644 tests/btrfs/076 create mode 100644 tests/btrfs/076.out create mode 100644 tests/btrfs/077 create mode 100644 tests/btrfs/077.out create mode 100755 tests/generic/035 create mode 100644 tests/generic/035.out create mode 100755 tests/xfs/053 create mode 100644 tests/xfs/053.out create mode 100755 tests/xfs/068 create mode 100644 tests/xfs/068.out -- Dave Chinner david@xxxxxxxxxxxxx
Attachment:
signature.asc
Description: Digital signature