summaryrefslogtreecommitdiff
path: root/test/e2e-go/upgrades/send_receive_upgrade_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/e2e-go/upgrades/send_receive_upgrade_test.go')
-rw-r--r--test/e2e-go/upgrades/send_receive_upgrade_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e-go/upgrades/send_receive_upgrade_test.go b/test/e2e-go/upgrades/send_receive_upgrade_test.go
index f7b58949a..b67a5b21d 100644
--- a/test/e2e-go/upgrades/send_receive_upgrade_test.go
+++ b/test/e2e-go/upgrades/send_receive_upgrade_test.go
@@ -45,30 +45,35 @@ func GenerateRandomBytes(n int) []byte {
// across a protocol upgrade.
func TestAccountsCanSendMoneyAcrossUpgradeV15toV16(t *testing.T) {
partitiontest.PartitionTest(t)
+ defer fixtures.ShutdownSynchronizedTest(t)
testAccountsCanSendMoneyAcrossUpgrade(t, filepath.Join("nettemplates", "TwoNodes50EachV15Upgrade.json"))
}
func TestAccountsCanSendMoneyAcrossUpgradeV21toV22(t *testing.T) {
partitiontest.PartitionTest(t)
+ defer fixtures.ShutdownSynchronizedTest(t)
testAccountsCanSendMoneyAcrossUpgrade(t, filepath.Join("nettemplates", "TwoNodes50EachV21Upgrade.json"))
}
func TestAccountsCanSendMoneyAcrossUpgradeV22toV23(t *testing.T) {
partitiontest.PartitionTest(t)
+ defer fixtures.ShutdownSynchronizedTest(t)
testAccountsCanSendMoneyAcrossUpgrade(t, filepath.Join("nettemplates", "TwoNodes50EachV22Upgrade.json"))
}
func TestAccountsCanSendMoneyAcrossUpgradeV23toV24(t *testing.T) {
partitiontest.PartitionTest(t)
+ defer fixtures.ShutdownSynchronizedTest(t)
testAccountsCanSendMoneyAcrossUpgrade(t, filepath.Join("nettemplates", "TwoNodes50EachV23Upgrade.json"))
}
func TestAccountsCanSendMoneyAcrossUpgradeV24toV25(t *testing.T) {
partitiontest.PartitionTest(t)
+ defer fixtures.ShutdownSynchronizedTest(t)
testAccountsCanSendMoneyAcrossUpgrade(t, filepath.Join("nettemplates", "TwoNodes50EachV24Upgrade.json"))
}