Commit Graph

1014 Commits

Author SHA1 Message Date
Tim Shimmin a5f4f588c1 Update 189.out for the touch test.
Merge of master-melb:xfs-cmds:32339a by kenmcd.

  Update 189.out for the touch test.
2008-10-15 15:49:12 +00:00
Tim Shimmin e32c0657c0 test out a remount bug where ro->rw doesn't update xfs flag and thinks it is
still readonly. Test using touch.
Code provided by Christoph Hellwig.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of master-melb:xfs-cmds:32320a by kenmcd.

  test out a remount bug where ro->rw doesn't update xfs flag and thinks it is
  still readonly. Test using touch.
  Code provided by Christoph Hellwig.
2008-10-14 14:58:57 +00:00
Tim Shimmin 6256598a6a add comment to test about its related bugs in bugworks
Merge of master-melb:xfs-cmds:32116a by kenmcd.

  add comment to test about its related bugs in bugworks
2008-09-15 06:19:07 +00:00
Barry Naujok 2c578cb87f Update xfsprogs to latest kernel headers and functions
Merge of master-melb:xfs-cmds:32070a by kenmcd.
2008-09-08 06:18:43 +00:00
Tim Shimmin 58963d0f80 Update the group file more completely for nfs4acl support
Merge of master-melb:xfs-cmds:32059a by kenmcd.

  Update nfs4acl group.
2008-09-05 06:19:12 +00:00
Tim Shimmin 841b609ec9 Check in Andreas Gruenbacher's nfs v4 acl tests into the xfstests suite.
Merge of master-melb:xfs-cmds:32058a by kenmcd.

  Run all the tests in xfstests/nfs4acl
2008-09-05 06:18:15 +00:00
Barry Naujok ed08552846 Fix nametest.c warnings
Merge of master-melb:xfs-cmds:32013a by kenmcd.

  Fix nametest.c build warnings
2008-09-01 15:59:10 +00:00
Barry Naujok ca340eaf41 Update QA 096 for ASCII CI mkfs output
Merge of master-melb:xfs-cmds:31997a by kenmcd.

  Execute bits changed from xxx to ---
  Update for ASCII CI mkfs output
2008-08-28 04:09:33 +00:00
Peter Leckie a7125ed1bb Fix test 190 to work file filesystems with bsize other then 4096.
Merge of master-melb:xfs-cmds:31968a by kenmcd.

  Fix test 190 to work file filesystems with bsize other then 4096.
2008-08-26 16:11:33 +00:00
Peter Leckie e6e55060ae Add test to check unreserve space hole is the same as what we requested.
Merge of master-melb:xfs-cmds:31945a by kenmcd.

  Add test to check unreserve space hole is the same as what we requested.
2008-08-22 06:11:29 +00:00
Peter Leckie ec3e4f82d6 Disable tests 098 101 and 102 from running under the auto group.
Merge of master-melb:xfs-cmds:31943a by kenmcd.

  Disable tests 098 101 and 102 from running under the auto group.
2008-08-22 06:10:39 +00:00
Tim Shimmin ff59b130ac Add 017 to mount group. At Christoph's reminder.
Merge of master-melb:xfs-cmds:31913a by kenmcd.

  add 017 to mount group
2008-08-18 03:59:14 +00:00
Tim Shimmin 8b9019b609 Add a bunch of tests for remount code.
Written by Christoph and amended by Tim to do some more testing
with fstab etc.
Merge of master-melb:xfs-cmds:31909a by kenmcd.

  remount test
2008-08-15 16:11:24 +00:00
Brad Scarlett 892272e603 Various tests were incorrectly identifying themselves in header comments
Merge of master-melb:xfs-cmds:31874a by kenmcd.

  Change Header comment to correctly identify test name
2008-08-12 04:14:21 +00:00
Brad Scarlett 421f622445 xfstests/145 has an incorrect comment describing itself as FSQA Test 142
Merge of master-melb:xfs-cmds:31872a by kenmcd.
2008-08-11 16:05:45 +00:00
Brad Scarlett f818b1956b Tims patch to fix test 122: the __arch_pack stuff is confusing it - as was the case in the past
with the "attribute packed" stuff for the efi/efd items etc..
It is confusing the parsing which works out the type names.
Merge of master-melb:xfs-cmds:31658a by kenmcd.
2008-07-17 04:11:10 +00:00
Tim Shimmin 5316024f6f If test 078 fails and you try to run it again immediately, it
will execute a 'rm -f' on a directory which will fail. This should
be a rmdir....

Signed-off-by: Dave Chinner <dgc@sgi.com>
Merge of master-melb:xfs-cmds:31637a by kenmcd.

  If test 078 fails and you try to run it again immediately, it
  will execute a 'rm -f' on a directory which will fail. This should
  be a rmdir....  Signed-off-by: Dave Chinner <dgc@sgi.com>
2008-07-15 06:17:47 +00:00
Barry Naujok 4152ce81d7 Add CI stat/create/unlink test for multiple directory forms
Merge of master-melb:xfs-cmds:31348a by kenmcd.

  Do CI stat/create/unlink test for multiple directory forms
2008-06-24 16:30:43 +00:00
Barry Naujok 2c8dbd49c8 Add CI stat/create/unlink test for multiple directory forms
Merge of master-melb:xfs-cmds:31347a by kenmcd.

  Add genhashnames target
2008-06-24 16:29:51 +00:00
Donald Douwsma 36763daef8 fix XFSQA 145 / test_hole
There are two errors I see all the time in 145:

 - dm_probe_hole returns EINVAL for offsets close to the file size
 - dm_probe_hole wants EAGAIN for a probe at offset 1, length 0


The first error is a consequence of how the hole puching / probing
works.  It always rounds the requested offset up to the next block
size and then checks if that rounded offset still fits into the file
size.  Just do the same rounding in the testcase to make sure we don't
probe invalid offsets.

The second error is very odd to me, as we never return AGAIN in the
whole dm_probe_hole path.  I've just commented it out.

I've also re-enabled the E2BIG to past-EOF test that was uncommented
before because it works perfectly fine now.


Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of master-melb:xfs-cmds:31330a by kenmcd.

  fix XFSQA 145 / test_hole
2008-06-18 16:09:09 +00:00
Donald Douwsma 7d8939d27c Fix XFSQA test 144
Two really dumb bugs:

 - "foo & 0x3FFFFFFFFFFFF" doesn't cap at 1TB, but rather at more than
   two magnitudes larger than that.  That gets us EFBIG with typical
   32bit XFS setups.
 - the command array can easily overflow and thus let the test fail


Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of master-melb:xfs-cmds:31327a by kenmcd.

  Fix XFSQA test 144
2008-06-18 16:08:20 +00:00
Niv Sardi d36fc6847d 074 takes ages to complete on my kvm test VM, but scaling it back to the
level used on IRIX makes it complete in slightly under 10 minutes.

I'm not sure if checking for UP vs SMP is the right way to go into slow
mode, but I couldn't think of anything better.


Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of master-melb:xfs-cmds:31272a by kenmcd.
2008-06-04 04:25:32 +00:00
Barry Naujok cf09031550 mkfs.reiserfs refuses to create a filesystem on full devices without
partitions unless it's given -f in addition to the already required Y
input to confirm the fs creation, so give the argument to it.

While we're at it also write the full command line used to create the
filesystem into the log to ease future debugging.


Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of master-melb:xfs-cmds:31250a by kenmcd.

  Execute bits changed from xxx to ---
  Fix up test with reiserfs
2008-05-29 17:01:09 +00:00
Brad Scarlett c7167f667a Fix 073 to run on sles10 systems
Merge of master-melb:xfs-cmds:31236a by kenmcd.
2008-05-28 04:05:02 +00:00
Dave Chinner 5fac0336b9 Don't run 167 if killall is not installed
Test 167 will leave runaway fsstress processes around in case killall is
not installed and thus make all following tests fail.  This patch checks
for killall beeing installed and error out otherwise.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of master-melb:xfs-cmds:31171a by kenmcd.

  don't run if killall is not installed.
2008-05-15 16:39:01 +00:00