diff options
author | Pranith Kumar K <pkarampu@redhat.com> | 2014-09-12 16:54:45 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2014-09-12 20:20:51 -0700 |
commit | 63b1c2e2a4cda315e8242f5bc0cf39a13319dae1 (patch) | |
tree | 30de4417fbd97ecf79a8ef5180c7b83eb7ab6de0 /tests | |
parent | 5d6f55ed9f122d3aeab583bb0ad16cb0c392a339 (diff) |
tests: Fix typo in M2 definition
Thanks to Anoop CS for finding the bug
Change-Id: I237e3a396967096b8e49200aed279af970e0a4d5
BUG: 1141167
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/8707
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Justin Clift <justin@gluster.org>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/include.rc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/include.rc b/tests/include.rc index 98c449387e5..7b490ea839e 100644 --- a/tests/include.rc +++ b/tests/include.rc @@ -1,6 +1,6 @@ M0=${M0:=/mnt/glusterfs/0}; # 0th mount point for FUSE M1=${M1:=/mnt/glusterfs/1}; # 1st mount point for FUSE -M2=${M1:=/mnt/glusterfs/2}; # 2nd mount point for FUSE +M2=${M2:=/mnt/glusterfs/2}; # 2nd mount point for FUSE N0=${N0:=/mnt/nfs/0}; # 0th mount point for NFS N1=${N1:=/mnt/nfs/1}; # 1st mount point for NFS V0=${V0:=patchy}; # volume name to use in tests @@ -59,7 +59,7 @@ CLI="gluster --mode=script --wignore"; GFS="glusterfs --attribute-timeout=0 --entry-timeout=0"; mkdir -p $B0; -mkdir -p $M0 $M1; +mkdir -p $M0 $M1 $M2; mkdir -p $N0 $N1; case $OSTYPE in |