Skip to content

Commit 981a609

Browse files
authored
Merge pull request #680 from ava-labs/bump-e2e-avago
bump avago + evm at e2e
2 parents 36cf843 + b33a895 commit 981a609

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

scripts/tests.e2e.sh

+6-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ fi
1212

1313
ANR_PATH=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
1414

15-
DEFAULT_VERSION_1=v1.10.10
16-
DEFAULT_VERSION_2=v1.10.9
17-
DEFAULT_SUBNET_EVM_VERSION=v0.5.5
15+
# this avago and subnet-evm versions must have compatibility at rpc protocol level
16+
DEFAULT_VERSION_1=v1.10.15
17+
DEFAULT_SUBNET_EVM_VERSION=v0.5.9
18+
19+
# used standalone, without interaction with subnet-evm, no compatibility needed
20+
DEFAULT_VERSION_2=v1.10.14
1821

1922
if [ $# == 0 ]; then
2023
VERSION_1=$DEFAULT_VERSION_1

tests/e2e/e2e_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ var _ = ginkgo.Describe("[Start/Remove/Restart/Add/Stop]", func() {
277277
})
278278

279279
ginkgo.By("can save snapshot", func() {
280-
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
280+
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
281281
_, err := cli.SaveSnapshot(ctx, "test")
282282
cancel()
283283
gomega.Ω(err).Should(gomega.BeNil())
@@ -483,7 +483,7 @@ var _ = ginkgo.Describe("[Start/Remove/Restart/Add/Stop]", func() {
483483
})
484484

485485
ginkgo.By("stop the network", func() {
486-
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
486+
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute)
487487
_, err := cli.Stop(ctx)
488488
cancel()
489489
gomega.Ω(err).Should(gomega.BeNil())

0 commit comments

Comments
 (0)