diff options
author | Harshavardhana <harsha@harshavardhana.net> | 2014-08-19 18:24:23 -0700 |
---|---|---|
committer | Harshavardhana <harsha@harshavardhana.net> | 2014-08-29 09:13:02 -0700 |
commit | 2dd53eb4de91c25817af85475cfa9ff66e79c97b (patch) | |
tree | 1fce885b03af9a07d797dfac92f9ecd24817617e /tests/basic/ec/ec.t | |
parent | 04be6a47df5c7d5c04c84fed06df9a8a1652c582 (diff) |
porting: various fixes regression tests OSX/FreeBSD
- `wc -l` on OSX/FreeBSD adds spurious spaces, this clobbers
up TAP output parsers - fix it.
- `umount -l` doesn't exist on OSX/FreeBSD use 'umount -f' if
available.
- Add check for 'file' version, to handle mime type variations
across versions
- Converge 'glusterfs --attribute-timeout=0 --entry-timeout=0'
into '$GFS'
- Modify remaining 'mount -t nfs' to use 'mount_nfs'
- Update sha1sum for OSX to use 'openssl sha1'.
Change-Id: Id1012faa5d67a921513d220e7fa9cebafe830d34
BUG: 1131713
Signed-off-by: Harshavardhana <harsha@harshavardhana.net>
Reviewed-on: http://review.gluster.org/8501
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Diffstat (limited to 'tests/basic/ec/ec.t')
-rw-r--r-- | tests/basic/ec/ec.t | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/basic/ec/ec.t b/tests/basic/ec/ec.t index d069fac4fec..569f4c7098a 100644 --- a/tests/basic/ec/ec.t +++ b/tests/basic/ec/ec.t @@ -140,7 +140,7 @@ TEST $CLI volume start $V0 EXPECT 'Started' volinfo_field $V0 'Status' # Mount FUSE with caching disabled -TEST glusterfs --entry-timeout=0 --attribute-timeout=0 -s $H0 --volfile-id $V0 $M0 +TEST $GFS -s $H0 --volfile-id $V0 $M0 # Create local files for comparisons etc. tmpdir=$(mktemp -d -t ${0##*/}.XXXXXX) @@ -185,7 +185,7 @@ TEST setup_perm_file $M0 # Unmount/remount so that create/write and truncate don't see cached data. TEST umount $M0 -TEST glusterfs --entry-timeout=0 --attribute-timeout=0 -s $H0 --volfile-id $V0 $M0 +TEST $GFS -s $H0 --volfile-id $V0 $M0 # Test create/write and truncate *before* the bricks are brought back. TEST check_create_write $M0 @@ -197,7 +197,7 @@ sleep 10 # Unmount/remount again, same reason as before. TEST umount $M0 -TEST glusterfs --entry-timeout=0 --attribute-timeout=0 -s $H0 --volfile-id $V0 $M0 +TEST $GFS -s $H0 --volfile-id $V0 $M0 # Make sure everything is as it should be. Most tests check for consistency # between the bricks and the front end. This is not valid for disperse, so we @@ -230,4 +230,3 @@ rm -rf $tmpdir userdel --force ${TEST_USER} cleanup - |