Up to [Development] / xfs-cmds / xfstests
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: MAIN
Revision 1.66 / (download) - annotate - [select for diffs], Tue Jul 3 04:01:25 2007 UTC (10 years, 3 months ago) by ddiss.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.65: +15 -3
lines
Diff to previous 1.65 (unified)
A recent change to XFSQA to resolve mkfs option conflicts means mkfs can be run twice per _scratch_mkfs_xfs:
$MKFS_XFS_PROG $SCRATCH_OPTIONS $MKFS_OPTIONS $extra_mkfs_options $SCRATCH_DEV
local mkfs_status=$?
# a mkfs failure may be caused by conflicts between
# $MKFS_OPTIONS and $extra_mkfs_options
if [ $mkfs_status -ne 0 -a ! -z "$extra_mkfs_options" ]; then
echo "** mkfs failed with extra mkfs options added to \"$MKFS_OPTIONS\" by test $seq **" \
>>$here/$seq.full
echo "** attempting to mkfs using only test $seq options: $extra_mkfs_options **" \
>>$here/$seq.full
$MKFS_XFS_PROG $SCRATCH_OPTIONS $extra_mkfs_options $SCRATCH_DEV
mkfs_status=$?
fi
In the case of a failure caused by conflict between $MKFS_OPTIONS and $extra_mkfs_options,
the mkfs output is shown twice, first off is the failed mkfs output, secondly the resolved mkfs output.
This can cause QA failures for a number of tests, particularly those that filter the mkfs output.
This change shows only the applied (final) mkfs output from _scratch_mkfs_xfs.
Merge of master-melb:xfs-cmds:29041a by kenmcd.
Revision 1.65 / (download) - annotate - [select for diffs], Thu May 17 15:58:12 2007 UTC (10 years, 5 months ago) by ddiss.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.64: +17 -2
lines
Diff to previous 1.64 (unified)
Currently there are a few ways mkfs options are specified in XFSQA: 1) suite wide MKFS_OPTIONS are specified before tests are run e.g. vimes:/home/fsgqa/kali/xfsqa/xfstests # export MKFS_OPTIONS="-l size=100m" 2) test wide MKFS_OPTIONS are specified during a particular test e.g. 119 export MKFS_OPTIONS="-l version=2,size=1200b,su=64k" 3) mkfs options are appended by a test at mkfs time e.g. 083 _scratch_mkfs_xfs -dsize=$fsz,agcount=$ags >>$seq.full (4) Another form of appending is just appending to MKFS_OPTIONS directly e.g. 114:export MKFS_OPTIONS="$MKFS_OPTIONS -i parent=1" 115:export MKFS_OPTIONS="$MKFS_OPTIONS -i paths=1" Conflicts between mkfs options specified with method 1 & 3 are common. 960377 XFSQA 041, 042 - mkfs fails with large log size MKFS_OPTIONS. This change means if a mkfs fails where mkfs options have been appended by a test (method 3), The mkfs is retried using only those options defined by the test. occurances of method 4 (in test 114 & 115) are also changed to use method 3. $seq.full logs the fact that a mkfs options conflict has occured. Merge of master-melb:xfs-cmds:28601a by kenmcd. if there are conflicts between global and test specified mkfs options, then use only the test specified ones.
Revision 1.64 / (download) - annotate - [select for diffs], Tue Jan 16 02:58:21 2007 UTC (10 years, 9 months ago) by allanr.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.63: +1 -0
lines
Diff to previous 1.63 (unified)
Integrate dmapi suite 1 into xfsqa infrastructure Merge of master-melb:xfs-cmds:27924a by kenmcd. modified dmapi mount to use dmi instead of dmapi for irix compatibility
Revision 1.63 / (download) - annotate - [select for diffs], Thu Jan 11 02:56:11 2007 UTC (10 years, 9 months ago) by allanr.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.62: +8 -8
lines
Diff to previous 1.62 (unified)
fixed dmapi mount filter to work on irix Merge of master-melb:xfs-cmds:27901a by kenmcd. Execute bits changed from --- to xxx fixed dmapi mount filter to work on irix
Revision 1.62 / (download) - annotate - [select for diffs], Tue Dec 19 02:55:36 2006 UTC (10 years, 10 months ago) by allanr.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.61: +20 -10
lines
Diff to previous 1.61 (unified)
Integrate existing dmapi qa tests into xfs qa infrastructure Merge of master-melb:xfs-cmds:27764a by kenmcd. added filter to set dmapi's mtpt to correct mount point in _mount
Revision 1.61 / (download) - annotate - [select for diffs], Mon Oct 16 06:14:00 2006 UTC (11 years ago) by ddiss.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.60: +3 -3
lines
Diff to previous 1.60 (unified)
moved _mount_ops_minus_o_comma_replace to _mount routine, to filter all mount requests for multiple -o's Merge of master-melb:xfs-cmds:27199a by kenmcd.
Revision 1.60 / (download) - annotate - [select for diffs], Fri Oct 13 03:54:57 2006 UTC (11 years ago) by ddiss.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.59: +13 -2
lines
Diff to previous 1.59 (unified)
irix is fussy about how it is fed its mount options - multiple -o's are not allowed - no spaces between comma delimitered options added sed script replaces all -o's (except the first) with a comma Merge of master-melb:xfs-cmds:27184a by kenmcd.
Revision 1.59 / (download) - annotate - [select for diffs], Thu Sep 7 04:00:20 2006 UTC (11 years, 1 month ago) by ddiss.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.58: +1 -0
lines
Diff to previous 1.58 (unified)
initialize extra_mount_options as blank string in _check_xfs_filesystem to prevent mount arg duplication every test Merge of master-melb:xfs-cmds:26931a by kenmcd. fixed mount arg duplication causing irix mounts to fail
Revision 1.58 / (download) - annotate - [select for diffs], Fri Aug 4 13:44:58 2006 UTC (11 years, 2 months ago) by allanr.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.57: +9 -0
lines
Diff to previous 1.57 (unified)
Merge relevant CXFSQA tests into XFSQA Merge of master-melb:xfs-cmds:26631a by kenmcd.
Revision 1.57 / (download) - annotate - [select for diffs], Sat Jul 8 04:23:04 2006 UTC (11 years, 3 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.56: +1 -1
lines
Diff to previous 1.56 (unified)
In _xfs_mounted, add quotes around the grep expression to prevent partial matches. Merge of master-melb:xfs-cmds:26491a by kenmcd. In _xfs_mounted, add quotes around the grep expression to prevent partial matches.
Revision 1.56 / (download) - annotate - [select for diffs], Fri Jul 7 16:00:24 2006 UTC (11 years, 3 months ago) by ajones.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.55: +13 -6
lines
Diff to previous 1.55 (unified)
The test device is now used as a nfs filesystem. Merge of master-melb:xfs-cmds:26462a by kenmcd. - Added a $iam test so common.config does not get sourced twice. - Added missing double quotes in an if statement. - Added check for xfs in _check_test_fs() that returns if the filesystem is not xfs.
Revision 1.55 / (download) - annotate - [select for diffs], Tue Jun 27 03:49:23 2006 UTC (11 years, 3 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.54: +2 -2
lines
Diff to previous 1.54 (unified)
QA updates - make builds on older versions of headers work, reenable rt on bruce. Merge of master-melb:xfs-cmds:26356a by kenmcd.
Revision 1.54 / (download) - annotate - [select for diffs], Mon May 15 06:10:31 2006 UTC (11 years, 5 months ago) by allanr.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.53: +17 -0
lines
Diff to previous 1.53 (unified)
added dd function to handle variations of dd output in Linux Merge of master-melb:xfs-cmds:25929a by kenmcd. added dd function to handle variations of dd output in Linux
Revision 1.53 / (download) - annotate - [select for diffs], Fri Dec 9 02:52:22 2005 UTC (11 years, 10 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.52: +16 -2
lines
Diff to previous 1.52 (unified)
QA test updates - fixes for pquota, extsize, fsstress, and ensure mount options passed through to test_dev. Merge of master-melb:xfs-cmds:24763a by kenmcd.
Revision 1.52 / (download) - annotate - [select for diffs], Thu Jul 14 03:45:42 2005 UTC (12 years, 3 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.51: +2 -2
lines
Diff to previous 1.51 (unified)
fgrep on IRIX doesnt have a -q flag - so switch to plain grep. Merge of master-melb:xfs-cmds:23174a by kenmcd.
Revision 1.51 / (download) - annotate - [select for diffs], Mon Jul 11 14:57:36 2005 UTC (12 years, 3 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.50: +119 -110
lines
Diff to previous 1.50 (unified)
Add a generic inode flag tester, fix filter in test 103. Merge of master-melb:xfs-cmds:23132a by kenmcd.
Revision 1.50 / (download) - annotate - [select for diffs], Thu Jun 2 15:10:00 2005 UTC (12 years, 4 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.49: +7 -0
lines
Diff to previous 1.49 (unified)
check for ipath consistency on TEST_DIR between tests. Merge of master-melb:xfs-cmds:22780a by kenmcd. check for ipath consistency on TEST_DIR between tests.
Revision 1.49 / (download) - annotate - [select for diffs], Tue Oct 12 15:40:35 2004 UTC (13 years ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.48: +1 -1
lines
Diff to previous 1.48 (unified)
Get things working for unusual filesystem types once again. Merge of xfs-cmds-melb:slinx:19728a by kenmcd.
Revision 1.48 / (download) - annotate - [select for diffs], Thu Sep 23 14:34:25 2004 UTC (13 years ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.47: +3 -5
lines
Diff to previous 1.47 (unified)
Update QA tests and host configs. Merge of xfs-cmds-melb:slinx:19518a by kenmcd.
Revision 1.47 / (download) - annotate - [select for diffs], Wed Sep 15 05:57:50 2004 UTC (13 years, 1 month ago) by ajones
Branch: MAIN
Changes since 1.46: +106 -16
lines
Diff to previous 1.46 (unified)
Tests from UDFQA ported to FSQA. Added _populate_fs function. renamed _setup_nfs_testdir to _setup_nfs_scratchdir and _setup_udf_testdir to _setup_udf_scratchdir, plus added a comment to _setup_testdir about other filesystems using this.
Revision 1.46 / (download) - annotate - [select for diffs], Fri Aug 20 06:44:08 2004 UTC (13 years, 2 months ago) by fsgqa
Branch: MAIN
Changes since 1.45: +9 -0
lines
Diff to previous 1.45 (unified)
Regression test exercising realtime inheritance behavior.
Revision 1.45 / (download) - annotate - [select for diffs], Tue Aug 10 05:43:44 2004 UTC (13 years, 2 months ago) by tes
Branch: MAIN
Changes since 1.44: +13 -5
lines
Diff to previous 1.44 (unified)
add test 093 for testing removal of cap EA on file writes when process doesn't have FSETID and SETFCAP capabilities. This is an IRIX only test. This will check that pv#901019 changes are not stuffing up what the code was supposed to do. stop the annoying /proc/xfs msgs when running check on IRIX. Determine debug/nondebug kernels from uname on IRIX.
Revision 1.44 / (download) - annotate - [select for diffs], Wed Jul 28 08:12:22 2004 UTC (13 years, 2 months ago) by ptools
Branch: MAIN
Changes since 1.43: +40 -40
lines
Diff to previous 1.43 (unified)
Fixed for UDF tests. Added this error message to tell people to download and build the Phill.
Revision 1.43 / (download) - annotate - [select for diffs], Tue Jul 27 05:53:41 2004 UTC (13 years, 2 months ago) by tes
Branch: MAIN
Changes since 1.42: +1 -0
lines
Diff to previous 1.42 (unified)
Make 074 finish in a reasonable time on IRIX (also on Linux). keep some shell happy somewhere with a null stmt.
Revision 1.42 / (download) - annotate - [select for diffs], Fri Jul 9 04:16:16 2004 UTC (13 years, 3 months ago) by fsgqa
Branch: MAIN
Changes since 1.41: +12 -1
lines
Diff to previous 1.41 (unified)
Realtime IO path tests; get local host configs working again.
Revision 1.41 / (download) - annotate - [select for diffs], Fri Jul 9 04:04:14 2004 UTC (13 years, 3 months ago) by ptools
Branch: MAIN
Changes since 1.40: +1 -1
lines
Diff to previous 1.40 (unified)
Fixed general IRIX/Linux problems when running the -udf option. Fixed udf case in _scratch_mkfs()
Revision 1.40 / (download) - annotate - [select for diffs], Thu Jul 1 00:20:03 2004 UTC (13 years, 3 months ago) by fsgqa
Branch: MAIN
Changes since 1.39: +2 -8
lines
Diff to previous 1.39 (unified)
Cleanup mkfs on scratch device for arbitrary filesystems.
Revision 1.39 / (download) - annotate - [select for diffs], Tue Jun 29 02:16:00 2004 UTC (13 years, 3 months ago) by fsgqa
Branch: MAIN
Changes since 1.38: +11 -3
lines
Diff to previous 1.38 (unified)
Fixed bench marking of other filesystems. Added cases for ext2, ext3 and reiserfs.
Revision 1.38 / (download) - annotate - [select for diffs], Fri Jun 25 03:09:08 2004 UTC (13 years, 3 months ago) by sandeen
Branch: MAIN
Changes since 1.37: +16 -11
lines
Diff to previous 1.37 (unified)
fix up xfstests for realtime fs require explicit logdev & rtdev for fs check routine
Revision 1.37 / (download) - annotate - [select for diffs], Thu Jun 24 00:12:48 2004 UTC (13 years, 3 months ago) by fsgqa
Branch: MAIN
Changes since 1.36: +16 -6
lines
Diff to previous 1.36 (unified)
Update QA to function correctly with realtime subvolumes.
Revision 1.36 / (download) - annotate - [select for diffs], Mon Jun 21 04:53:35 2004 UTC (13 years, 3 months ago) by tes
Branch: MAIN
Changes since 1.35: +5 -5
lines
Diff to previous 1.35 (unified)
Modify log/v2-log qa tests to run on IRIX as well as Linux. Put xfs check/repair/logprint command output in appropriately named separate files. I had a case where it said the check failed and outputted the clean logprint info - it was confused and I was confused.
Revision 1.35 / (download) - annotate - [select for diffs], Wed Jun 16 06:08:04 2004 UTC (13 years, 4 months ago) by fsgqa
Branch: MAIN
Changes since 1.34: +3 -26
lines
Diff to previous 1.34 (unified)
QA tweaks - use a single os type source mainly (drop get_os, use HOST_OS)
Revision 1.34 / (download) - annotate - [select for diffs], Tue Jun 15 07:32:36 2004 UTC (13 years, 4 months ago) by ptools
Branch: MAIN
Changes since 1.33: +463 -172
lines
Diff to previous 1.33 (unified)
Fixed merge problems
Revision 1.33 / (download) - annotate - [select for diffs], Wed Jun 9 11:33:52 2004 UTC (13 years, 4 months ago) by nathans
Branch: MAIN
Changes since 1.32: +4 -3
lines
Diff to previous 1.32 (unified)
Fix uses of xfs_check with an external log, needs -l now.
Revision 1.32 / (download) - annotate - [select for diffs], Mon Feb 2 01:13:25 2004 UTC (13 years, 8 months ago) by fsgqa
Branch: MAIN
Changes since 1.31: +22 -0
lines
Diff to previous 1.31 (unified)
Minor xfstests tweaks - report kernel version in check as in bench.
Revision 1.31 / (download) - annotate - [select for diffs], Fri Sep 12 00:38:26 2003 UTC (14 years, 1 month ago) by fsgqa
Branch: MAIN
Changes since 1.30: +10 -5
lines
Diff to previous 1.30 (unified)
Big filesystem testing update - skip the repair check for the moment, takes too long; allow ag-wipe to keep high bits in an AG free as well
Revision 1.30 / (download) - annotate - [select for diffs], Fri Aug 29 06:04:54 2003 UTC (14 years, 1 month ago) by fsgqa
Branch: MAIN
Changes since 1.29: +24 -29
lines
Diff to previous 1.29 (unified)
QA updates to enable simplified large filesystem testing
Revision 1.29 / (download) - annotate - [select for diffs], Mon Aug 25 01:18:54 2003 UTC (14 years, 1 month ago) by fsgqa
Branch: MAIN
Changes since 1.28: +17 -3
lines
Diff to previous 1.28 (unified)
Update auto-benchmark stuff to remove assumptions about xfs as the only fs
Revision 1.28 / (download) - annotate - [select for diffs], Thu Jul 17 23:06:11 2003 UTC (14 years, 3 months ago) by fsgqa
Branch: MAIN
Changes since 1.27: +2 -6
lines
Diff to previous 1.27 (unified)
QA test updates. nuke an unused fsstress variable.
Revision 1.27 / (download) - annotate - [select for diffs], Thu Jul 17 04:09:59 2003 UTC (14 years, 3 months ago) by fsgqa
Branch: MAIN
Changes since 1.26: +7 -2
lines
Diff to previous 1.26 (unified)
QA updates
Revision 1.26 / (download) - annotate - [select for diffs], Mon Jul 14 05:12:23 2003 UTC (14 years, 3 months ago) by fsgqa
Branch: MAIN
Changes since 1.25: +1 -1
lines
Diff to previous 1.25 (unified)
Crank up fsstress a whole lot, enable unwritten extents everywhere, remove need for special getpagesize program
Revision 1.25 / (download) - annotate - [select for diffs], Mon Jun 2 01:49:23 2003 UTC (14 years, 4 months ago) by fsgqa
Branch: MAIN
Changes since 1.24: +3 -3
lines
Diff to previous 1.24 (unified)
Ensure QA tests are run with all the mount options requested
Revision 1.24 / (download) - annotate - [select for diffs], Sun Jun 1 21:40:24 2003 UTC (14 years, 4 months ago) by fsgqa
Branch: MAIN
Changes since 1.23: +4 -2
lines
Diff to previous 1.23 (unified)
QA test updates. Fix mounting of test fs/dev so that external log/rt devices can be used.
Revision 1.23 / (download) - annotate - [select for diffs], Fri May 30 04:41:31 2003 UTC (14 years, 4 months ago) by fsgqa
Branch: MAIN
Changes since 1.22: +1 -3
lines
Diff to previous 1.22 (unified)
QA update - do not remount filesystems if corruption detected as this writes to the log
Revision 1.22 / (download) - annotate - [select for diffs], Tue May 27 01:04:39 2003 UTC (14 years, 4 months ago) by fsgqa
Branch: MAIN
Changes since 1.21: +4 -1
lines
Diff to previous 1.21 (unified)
Fix for external log/rt on the test device for auto-qa
Revision 1.21 / (download) - annotate - [select for diffs], Thu May 22 04:16:45 2003 UTC (14 years, 5 months ago) by fsgqa
Branch: MAIN
Changes since 1.20: +103 -31
lines
Diff to previous 1.20 (unified)
Numerous changes to QA scripts allowing tests to run with external log/rt devices; also allow multiple mkfs/mount options at once now.
Revision 1.20 / (download) - annotate - [select for diffs], Tue May 20 04:24:25 2003 UTC (14 years, 5 months ago) by fsgqa
Branch: MAIN
Changes since 1.19: +1 -1
lines
Diff to previous 1.19 (unified)
do not avoid any fsstress commands by default anymore, during any QA tests
Revision 1.19 / (download) - annotate - [select for diffs], Wed Dec 18 01:10:06 2002 UTC (14 years, 10 months ago) by fsgqa
Branch: MAIN
CVS Tags: XFS-1_3_0pre1
Changes since 1.18: +3 -3
lines
Diff to previous 1.18 (unified)
Allow for use of an external log device in benchmarks.
Revision 1.18 / (download) - annotate - [select for diffs], Wed Jun 5 02:24:23 2002 UTC (15 years, 4 months ago) by fsgqa
Branch: MAIN
Changes since 1.17: +1 -1
lines
Diff to previous 1.17 (unified)
loop may not always be a module - if not, modprobe will barf, but we should still proceed.
Revision 1.17 / (download) - annotate - [select for diffs], Tue Jun 4 23:07:56 2002 UTC (15 years, 4 months ago) by sandeen
Branch: MAIN
Changes since 1.16: +1 -1
lines
Diff to previous 1.16 (unified)
Update copyright dates (again)
Revision 1.16 / (download) - annotate - [select for diffs], Tue Jun 4 22:53:09 2002 UTC (15 years, 4 months ago) by sandeen
Branch: MAIN
Changes since 1.15: +1 -1
lines
Diff to previous 1.15 (unified)
Undoes mod: xfs-cmds:slinx:120772a Undo xfs-cmds:slinx:120772a, inadvertently whacked a previous mod.
Revision 1.15 / (download) - annotate - [select for diffs], Tue Jun 4 17:58:21 2002 UTC (15 years, 4 months ago) by sandeen
Branch: MAIN
Changes since 1.14: +1 -1
lines
Diff to previous 1.14 (unified)
Update copyright dates
Revision 1.14 / (download) - annotate - [select for diffs], Sun Jun 2 13:20:48 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.13: +1 -1
lines
Diff to previous 1.13 (unified)
probe for loop module when looking for loopfs support
Revision 1.13 / (download) - annotate - [select for diffs], Mon May 6 07:44:22 2002 UTC (15 years, 5 months ago) by fsgqa
Branch: MAIN
Changes since 1.12: +3 -9
lines
Diff to previous 1.12 (unified)
ensure logdev is unmounted, someone may have been using it for tests.
Revision 1.12 / (download) - annotate - [select for diffs], Sun Jan 20 00:47:43 2002 UTC (15 years, 9 months ago) by nathans
Branch: MAIN
Changes since 1.11: +7 -2
lines
Diff to previous 1.11 (unified)
allow mkfs arguments to be passed from the env for testing multiple block sizes.
Revision 1.11 / (download) - annotate - [select for diffs], Wed Sep 19 22:08:37 2001 UTC (16 years, 1 month ago) by nstraz
Branch: MAIN
Changes since 1.10: +11 -0
lines
Diff to previous 1.10 (unified)
Allow the QA suite to mount the test file system if it is not already mounted.
Revision 1.10 / (download) - annotate - [select for diffs], Tue May 22 06:07:23 2001 UTC (16 years, 5 months ago) by nathans
Branch: MAIN
CVS Tags: Linux-2_4_5-merge
Changes since 1.9: +29 -1
lines
Diff to previous 1.9 (unified)
abstract out multiple quota .seq files into a shared common routine.
Revision 1.9 / (download) - annotate - [select for diffs], Tue Apr 24 01:50:45 2001 UTC (16 years, 5 months ago) by fsgqa
Branch: MAIN
Changes since 1.8: +3 -0
lines
Diff to previous 1.8 (unified)
make sure we have a standard umask for each test (022).
Revision 1.8 / (download) - annotate - [select for diffs], Tue Apr 10 01:46:38 2001 UTC (16 years, 6 months ago) by fsgqa
Branch: MAIN
Changes since 1.7: +4 -2
lines
Diff to previous 1.7 (unified)
Back out newly introduced EF_PROTECT_FREE. Seems to be giving misguided errors for some tests.
Revision 1.7 / (download) - annotate - [select for diffs], Fri Apr 6 11:13:02 2001 UTC (16 years, 6 months ago) by fsgqa
Branch: MAIN
Changes since 1.6: +4 -0
lines
Diff to previous 1.6 (unified)
Add efence env variable to check for use of freed mem.
Revision 1.6 / (download) - annotate - [select for diffs], Wed Apr 4 01:45:38 2001 UTC (16 years, 6 months ago) by ajag
Branch: MAIN
Changes since 1.5: +23 -8
lines
Diff to previous 1.5 (unified)
improve _do, provide finer control over return status checking and auto exit
Revision 1.5 / (download) - annotate - [select for diffs], Mon Apr 2 05:21:15 2001 UTC (16 years, 6 months ago) by ajag
Branch: MAIN
Changes since 1.4: +1 -1
lines
Diff to previous 1.4 (unified)
fix _do for commands with shell metacharacters
Revision 1.4 / (download) - annotate - [select for diffs], Mon Apr 2 00:41:31 2001 UTC (16 years, 6 months ago) by ajag
Branch: MAIN
Changes since 1.3: +30 -0
lines
Diff to previous 1.3 (unified)
No Message Supplied
Revision 1.3 / (download) - annotate - [select for diffs], Wed Jan 31 07:08:16 2001 UTC (16 years, 8 months ago) by tes
Branch: MAIN
CVS Tags: Release-1_0_0
Changes since 1.2: +1 -0
lines
Diff to previous 1.2 (unified)
Minor addition to output notrun msg in case one wants to run test from command line instead of check.
Revision 1.2 / (download) - annotate - [select for diffs], Thu Jan 25 01:28:18 2001 UTC (16 years, 8 months ago) by nathans
Branch: MAIN
Changes since 1.1: +1 -1
lines
Diff to previous 1.1 (unified)
use awk not gawk.
Revision 1.1 / (download) - annotate - [select for diffs], Mon Jan 15 05:01:19 2001 UTC (16 years, 9 months ago) by nathans
Branch: MAIN
cmd/xfs/stress/common.rc 1.41 Renamed to cmd/xfstests/common.rc