summaryrefslogtreecommitdiff
path: root/runtests.sh
AgeCommit message (Collapse)AuthorFilesLines
2008-05-18Fixed the "src" symlink in each testtmp subdir.Wayne Davison1-1/+4
2008-05-17Fix some path problems when the build dir is not theWayne Davison1-2/+2
source dir.
2008-05-07The test of HAVE_LUTIMES accidentally omitted the 'L'.Wayne Davison1-1/+1
2008-05-06Added options to tls.c to allow us to ask for mtime and ownership infoWayne Davison1-1/+10
on symlinks. The testsuite will now pass these options to tls if rsync is configured to affect such attributes on symlinks.
2007-06-02Check for the setacl command for Tru64 (which doesn't have setfacl).Wayne Davison1-2/+5
2007-05-21Make sure that the scratch dirs have rwx permissions before we tryWayne Davison1-1/+1
a recursive rm.
2007-05-21Create a symlink back to the source dir in the scratchdir of a test.Wayne Davison1-0/+1
2007-04-14Changed scratchbase from using a "testtmp." name prefix to using aWayne Davison1-6/+9
"testtmp/" name prefix (i.e. using a subdir). This allows me to create a testtmp as a symlink to a different file system to assist with testing ACLs and xattrs.
2006-11-04Modified to recognize FreeBSD's setfacl command.Wayne Davison1-2/+2
2006-10-07Moved some variable setup here from the Makefile and made itWayne Davison1-8/+23
possible to specify extra rsync options for the test.
2006-05-11Updated the (commented out) valgrind command.Wayne Davison1-1/+1
2006-04-25- Updated the address for the FSF in the opening comment.Wayne Davison1-2/+2
- Standardized the format of the opening comment, including adding a brief description of what's in the file for those that lacked it. - Added some missing copyright lines. - Some minor whitespace tweaks (in a few of the files).
2006-03-16Added support for using solaris's "setfacl -s" in place ofWayne Davison1-5/+7
GNU's "setfacl -k".
2006-02-04In the compatibility comments: mention why we don't use grep -q.Wayne Davison1-1/+3
2006-02-04Ignore setfacl unless it tells us that it supports the -k option.Wayne Davison1-2/+2
2006-02-03Scratch-dir normalization from Matt: turn off any default ACLs (ifWayne Davison1-0/+9
setfacl is available) and disable any directory setgid bit to avoid confusing some tests.
2005-07-31Export RUNSHFLAGS.Wayne Davison1-0/+1
2005-02-20One more tweak to the "whoami" code.Wayne Davison1-1/+3
2005-02-20A few improvements to the "test" commands to neaten them up andWayne Davison1-18/+11
to try to fix another problem under solaris.
2005-02-20Improved the testuser-setting code to try to get it to workWayne Davison1-1/+7
under solaris.
2005-01-17Added a commented-out RSYNC initialization that uses valgrind.Wayne Davison1-0/+1
2005-01-17Collapsed two sed invocations into one.Wayne Davison1-1/+1
2004-02-04If we encounter an error, output the rsyncd.log file, if it exists.Wayne Davison1-0/+5
2004-01-04Try using "id -un" before "whoami" since the latter doesn't exist onWayne Davison1-1/+1
SunOS systems (and I hope the former works -- we'll see).
2003-01-21Separated a `cat "..."` command out from inside a double-quoted stringWayne Davison1-1/+2
so that we don't run afoul of some shells quoting quirks. (As Brian Poole suggested.)
2002-03-26Jos points out that test -L is still broken on Solaris. Now we try upMartin Pool1-0/+9
front to detect a command that will work properly, and use that consistently. Also, in test report, show setting of $preserve_scratch. Reset version.
2002-03-22If tests are skipped, explain why.Martin Pool1-1/+2
2002-03-22Add /usr/xpg4/bin/ to PATH to help solaris.Martin Pool1-0/+3
2002-03-22Cope on systems without the whoami command.Martin Pool1-6/+1
2002-03-14Show user name and `uname -a` in the test output header, to aid in bugMartin Pool1-0/+10
reports. (We mostly want to know if they're root or not.)
2002-02-09Add $preserve_scratch and $always_log so if you want to see detailsMartin Pool1-7/+11
about successful tests, you can.
2002-01-11Add concept of expected-failure.Martin Pool1-0/+7
2002-01-11Give cleaner output from "make check"Martin Pool1-3/+3
2002-01-11Improved test framework and test for hardlink handlingMartin Pool1-25/+40
2001-12-14Only show test output if it failed.Martin Pool1-2/+4
2001-12-14Make scratch directory properly.Martin Pool1-1/+1
2001-12-14Clean scratch directory between each test run.Martin Pool1-4/+7
2001-12-02Typo fix by Tom SchmidtMartin Pool1-1/+1
2001-09-07Doc.Martin Pool1-0/+7
2001-09-07Remove test trace stuff.Martin Pool1-1/+0
2001-09-07Try to exit 0 if nothing fails.Martin Pool1-2/+8
2001-09-06Debug exit status -- on Sun1/cc all the tests pass, but make sees anMartin Pool1-1/+3
exit status of 1. ???
2001-09-06You cannot do "export VAR=VALUE" all on one line; the export must beMartin Pool1-0/+3
separate from the assignment. (SCO SysV)
2001-09-06BSD machines don't seem to have head(1).Martin Pool1-0/+2
2001-09-06Doc.Martin Pool1-1/+17
Look at $whichtests to run just a subset -- good for calling from Make.
2001-09-06Fix comment.Martin Pool1-2/+2
2001-09-06Clean up output a little.Martin Pool1-3/+3
2001-08-31Fix sh syntax for FreeBSD.Martin Pool1-0/+3
2001-08-30Run all scripts in the testsuite/ directory, not just named ones. I'dMartin Pool1-8/+2
like to make this script not rsync-specific if possible.
2001-08-30On BSD, this seemed to always exit after test failure. Try differentMartin Pool1-1/+4
shell syntax.