make test args optional

This commit is contained in:
Jean-Paul Calderone 2018-06-15 16:02:49 -04:00
parent a4fb33c235
commit 3837fd880c
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ TAHOE_LAFS_TOX_ENVIRONMENT=$1
shift
TAHOE_LAFS_TOX_ARGS=$1
shift
shift || :
# Run the test suite as a non-root user. This is the expected usage some
# small areas of the test suite assume non-root privileges (such as unreadable

View File

@ -4,7 +4,7 @@ TAHOE_LAFS_TOX_ENVIRONMENT=$1
shift
TAHOE_LAFS_TOX_ARGS=$1
shift
shift || :
# Set up the virtualenv as a non-root user so we can run the test suite as a
# non-root user. See below.