itest: move longest test to beginning

To make sure the test that takes the longest overall time is always
started first, independent of the number of test tranches we run, we
move it to the beginning of the list. Because that test involves a lot
of waiting, it allows us to play around with the number of tranches more
efficiently.
This commit is contained in:
Oliver Gugger 2020-11-04 11:03:37 +01:00
parent e6c47294fb
commit a606f462bc
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -3,6 +3,10 @@
package itest
var allTestCases = []*testCase{
{
name: "test multi-hop htlc",
test: testMultiHopHtlcClaims,
},
{
name: "sweep coins",
test: testSweepAllCoins,
@ -144,10 +148,6 @@ var allTestCases = []*testCase{
name: "async bidirectional payments",
test: testBidirectionalAsyncPayments,
},
{
name: "test multi-hop htlc",
test: testMultiHopHtlcClaims,
},
{
name: "switch circuit persistence",
test: testSwitchCircuitPersistence,