public inbox for fstests@vger.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] fstests: master branch updated to 948b1881f6ee
@ 2017-09-03 14:22 Eryu Guan
  2017-09-04  8:07 ` Eryu Guan
  0 siblings, 1 reply; 2+ messages in thread
From: Eryu Guan @ 2017-09-03 14:22 UTC (permalink / raw)
  To: fstests

[-- Attachment #1: Type: text/plain, Size: 4775 bytes --]

Hi all,

The master branch of the xfstests repository at:

	git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git

have just been updated. Notably, fsx was fixed so that random seed could do its
work, previously all tests ran fsx were running the same operation sequences.
And fsstress was fixed so that it could run direct I/O on non-XFS filesystems.
These two widely used test programs are changing there behaviors, so there're
changes new bugs can be found, though I didn't see any in my release testing.
Other commits are normal new tests, bug fixes and improvements.

It was a busy week last week, many patches were posted for review, 20 of them
are reviewed & accepted in this update. Thanks a lot to who have contributed
patches and/or helped review patches. But there're still some outstanding
patches waiting for review, especially patches from Amir/Josef that add power
failure test frame work using dm-log-write target. Hopefully I'll get them
reviewed in the comming week.

Though there're many updates, I didn't see any new failures in auto group when
running tests with 4.13-rc7 kernel and for-next branch of upstream xfsprogs. If
you see any new failure introduced by test bug please help report and/or
contribute fixes.

Thanks,
Eryu

The new head of the master branch is commit:

948b1881f6ee fstests: filter test and scratch together safely

New commits:

Amir Goldstein (5):
      [5bbc4ffa0d0e] common/rc: convert some egrep to grep
      [9b1358a22b93] common/rc: fix _require_xfs_io_command params check
      [14ceec4027ad] fsx: fixes to random seed
      [048b95ffd4bd] fsx: fix path of .fsx* files
      [211cb9170c19] fsx: fix compile warnings

Darrick J. Wong (7):
      [fc3c28b30784] xfs/{319,323}: don't checksum files after log recovery
      [a0c125b49666] xfs/013: exit cleaner thread if fsstress dies
      [d2f2947517ae] generic/173: don't dump core when mwrite fails
      [34141fb5f3cc] common/rc: fix xfs_io scrub command existence test
      [5cec561327e0] xfs/122: fix the size of fsop_ag_resblks structure
      [1c7f4dbf37c8] xfs: test rmapbt updates are correct with insert/collapse range
      [0e641bc6ebcc] generic: try various unicode normalization games

Ilya Dryomov (1):
      [af04d7247fa3] generic/420: truncate testfile before executing the test

Misono, Tomohiro (1):
      [948b1881f6ee] fstests: filter test and scratch together safely

Ross Zwisler (1):
      [41ab66699051] generic: add test for executables on read-only DAX mounts

Tuomas Tynkkynen (2):
      [d7286fbaa69d] src/t_mtab: Add newlines to error messages
      [8d085f7a03d4] fsx: Fix -Wformat-security warnings

Zorro Lang (3):
      [53600ec6d3f3] generic: test data integrity with mixed buffer read and aio dio write
      [fb3c560d49a8] xfs/095: require 512b sector size SCRATCH_DEV
      [b669b303d02e] fsstress: fallback to block size for min dio size


Code Diffstat:

 .gitignore                                |   1 +
 common/filter                             |  13 +-
 common/rc                                 |  17 +-
 ltp/fsstress.c                            |  23 ++-
 ltp/fsx.c                                 |  41 +++--
 src/aio-dio-regress/aio-dio-cycle-write.c | 271 ++++++++++++++++++++++++++++++
 src/punch-alternating.c                   |  20 ++-
 src/t_mtab.c                              |   8 +-
 tests/btrfs/029                           |  11 +-
 tests/generic/173                         |   3 +
 tests/generic/409                         |   3 +-
 tests/generic/410                         |   3 +-
 tests/generic/411                         |   3 +-
 tests/generic/420                         |   4 +-
 tests/generic/451                         |  90 ++++++++++
 tests/generic/451.out                     |   2 +
 tests/generic/452                         |  73 ++++++++
 tests/generic/452.out                     |   3 +
 tests/generic/453                         | 171 +++++++++++++++++++
 tests/generic/453.out                     |   6 +
 tests/generic/454                         | 167 ++++++++++++++++++
 tests/generic/454.out                     |   6 +
 tests/generic/group                       |   4 +
 tests/xfs/013                             |   4 +
 tests/xfs/095                             |   4 +
 tests/xfs/114                             | 128 ++++++++++++++
 tests/xfs/114.out                         |   9 +
 tests/xfs/122.out                         |   2 +-
 tests/xfs/319                             |   5 -
 tests/xfs/319.out                         |   4 -
 tests/xfs/323                             |   4 -
 tests/xfs/323.out                         |   3 -
 tests/xfs/group                           |   1 +
 33 files changed, 1033 insertions(+), 74 deletions(-)
--
Eryu Guan
eguan@redhat.com

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ANNOUNCE] fstests: master branch updated to 948b1881f6ee
  2017-09-03 14:22 [ANNOUNCE] fstests: master branch updated to 948b1881f6ee Eryu Guan
@ 2017-09-04  8:07 ` Eryu Guan
  0 siblings, 0 replies; 2+ messages in thread
From: Eryu Guan @ 2017-09-04  8:07 UTC (permalink / raw)
  To: fstests

On Sun, Sep 03, 2017 at 10:22:52PM +0800, Eryu Guan wrote:
> Hi all,
> 
> The master branch of the xfstests repository at:
> 
> 	git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git
> 
> have just been updated. Notably, fsx was fixed so that random seed could do its
> work, previously all tests ran fsx were running the same operation sequences.
> And fsstress was fixed so that it could run direct I/O on non-XFS filesystems.
> These two widely used test programs are changing there behaviors, so there're
> changes new bugs can be found, though I didn't see any in my release testing.
> Other commits are normal new tests, bug fixes and improvements.
> 
> It was a busy week last week, many patches were posted for review, 20 of them
> are reviewed & accepted in this update. Thanks a lot to who have contributed
> patches and/or helped review patches. But there're still some outstanding
> patches waiting for review, especially patches from Amir/Josef that add power
> failure test frame work using dm-log-write target. Hopefully I'll get them
> reviewed in the comming week.
> 
> Though there're many updates, I didn't see any new failures in auto group when
> running tests with 4.13-rc7 kernel and for-next branch of upstream xfsprogs. If

Sorry, this is wrong. generic/451 may fail on XFS and extN filesystems,
the fix is already reviewed in fsdevel list. And generic/452 fails with
dax mounted extN filesystems (driven by ext4 driver).

I updated my test description file but forgot to point the jobs to fetch
from the test branch of my internal fstests git repo, so I tested
against master branch which didn't contain the new commits.. I've fixed
up my test description file now.

Thanks,
Eryu

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-09-04  8:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-03 14:22 [ANNOUNCE] fstests: master branch updated to 948b1881f6ee Eryu Guan
2017-09-04  8:07 ` Eryu Guan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox