diff options
author | Nigel Babu <nigelb@redhat.com> | 2019-01-21 12:17:04 +0530 |
---|---|---|
committer | Nigel Babu <nigelb@redhat.com> | 2019-02-07 13:36:31 +0530 |
commit | ea05e684e9a9d2ad7712631e88e6007f3ebc31e3 (patch) | |
tree | f32785fb2b2c5798bcde4d77d431f8a979b4b049 | |
parent | a10c8d75eb5ff7836b20a9f26bf9c0e99fd4f6bb (diff) |
Bump up timeout for tests on AWS
Fixes: bz#1673265
Change-Id: I2b9be45f199f6436b858536c6f49be85902217f0
Signed-off-by: Nigel Babu <nigelb@redhat.com>
-rwxr-xr-x | tests/bugs/distribute/bug-1161311.t | 1 | ||||
-rw-r--r-- | tests/bugs/glusterd/rebalance-operations-in-single-node.t | 4 | ||||
-rw-r--r-- | tests/include.rc | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/tests/bugs/distribute/bug-1161311.t b/tests/bugs/distribute/bug-1161311.t index d88642edc32..c52c69baafa 100755 --- a/tests/bugs/distribute/bug-1161311.t +++ b/tests/bugs/distribute/bug-1161311.t @@ -16,6 +16,7 @@ . $(dirname $0)/../../volume.rc cleanup +SCRIPT_TIMEOUT=350 TEST truncate -s 10GB $B0/brick1 TEST truncate -s 10GB $B0/brick2 TEST truncate -s 10GB $B0/brick3 diff --git a/tests/bugs/glusterd/rebalance-operations-in-single-node.t b/tests/bugs/glusterd/rebalance-operations-in-single-node.t index c0823afebb8..ef85887f440 100644 --- a/tests/bugs/glusterd/rebalance-operations-in-single-node.t +++ b/tests/bugs/glusterd/rebalance-operations-in-single-node.t @@ -119,13 +119,13 @@ TEST touch $M0/dir{21..30}/files{1..10}; TEST $CLI volume add-brick $V0 $H0:$B0/${V0}{7,8} TEST $CLI volume rebalance $V0 start force -EXPECT_WITHIN 60 "completed" rebalance_status_field $V0 +EXPECT_WITHIN 180 "completed" rebalance_status_field $V0 TEST pkill gluster TEST glusterd TEST pidof glusterd # status should be "completed" immediate after glusterd has respawned. -EXPECT_WITHIN 5 "completed" rebalance_status_field $V0 +EXPECT_WITHIN 20 "completed" rebalance_status_field $V0 cleanup diff --git a/tests/include.rc b/tests/include.rc index f02bba1442b..db04203ea21 100644 --- a/tests/include.rc +++ b/tests/include.rc @@ -75,7 +75,7 @@ NFS_EXPORT_TIMEOUT=20 CHILD_UP_TIMEOUT=20 PROBE_TIMEOUT=60 PEER_SYNC_TIMEOUT=20 -REBALANCE_TIMEOUT=360 +REBALANCE_TIMEOUT=600 REOPEN_TIMEOUT=20 HEAL_TIMEOUT=80 IO_HEAL_TIMEOUT=120 |