Skip to content

Commit 32332ff

Browse files
committed
test: no parallel
1 parent 323b838 commit 32332ff

14 files changed

Lines changed: 14 additions & 14 deletions

‎chains/solana/contracts/tests/ccip/ccip_router_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040
)
4141

4242
func TestCCIPRouter(t *testing.T) {
43-
t.Parallel()
43+
// t.Parallel()
4444

4545
ccip_router.SetProgramID(config.CcipRouterProgram)
4646
test_ccip_receiver.SetProgramID(config.CcipLogicReceiver)

‎chains/solana/contracts/tests/ccip/tokenpool_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040
)
4141

4242
func TestTokenPool(t *testing.T) {
43-
t.Parallel()
43+
// t.Parallel()
4444

4545
rmn_remote.SetProgramID(config.RMNRemoteProgram)
4646
test_token_pool.SetProgramID(config.CcipTokenPoolProgram)

‎chains/solana/contracts/tests/examples/ping_pong_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func getReusableAccounts(t *testing.T, linkMint solana.PublicKey) ReusableAccoun
8484
// Test basic happy path of the ping pong demo with "itself", meaning an SVM <-> SVM message
8585
// from the ping pong program to itself.
8686
func TestPingPong(t *testing.T) {
87-
t.Parallel()
87+
// t.Parallel()
8888

8989
// acting as "dumb" offramp, proxying calls to the receiver that are signed by PDA
9090
test_ccip_invalid_receiver.SetProgramID(config.CcipInvalidReceiverProgram)

‎chains/solana/contracts/tests/examples/pools_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ type ProgramData struct {
5353
// TestBaseTokenPoolHappyPath does basic happy path checks on the lock/release and burn/mint example pools
5454
// more detailed token pool tests are handled by the test-token-pool which is used in the tokenpool_test.go and ccip_router_test.go
5555
func TestBaseTokenPoolHappyPath(t *testing.T) {
56-
t.Parallel()
56+
// t.Parallel()
5757

5858
// acting as "dumb" onramp & offramp, proxying calls to the pool that are signed by PDA
5959
test_ccip_invalid_receiver.SetProgramID(config.CcipInvalidReceiverProgram)

‎chains/solana/contracts/tests/examples/receiver_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
)
2222

2323
func TestCcipReceiver(t *testing.T) {
24-
t.Parallel()
24+
// t.Parallel()
2525
ctx := tests.Context(t)
2626

2727
ccip_router.SetProgramID(config.CcipRouterProgram)

‎chains/solana/contracts/tests/mcms/mcm_multiple_instances_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
)
2121

2222
func TestMcmMultipleInstances(t *testing.T) {
23-
t.Parallel()
23+
// t.Parallel()
2424
mcm.SetProgramID(config.McmProgram)
2525

2626
ctx := tests.Context(t)

‎chains/solana/contracts/tests/mcms/mcm_set_config_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
)
2323

2424
func TestMcmSetConfig(t *testing.T) {
25-
t.Parallel()
25+
// t.Parallel()
2626
mcm.SetProgramID(config.McmProgram)
2727

2828
ctx := tests.Context(t)

‎chains/solana/contracts/tests/mcms/mcm_set_root_execute_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type TestMcmOperation struct {
3737
}
3838

3939
func TestMcmSetRootAndExecute(t *testing.T) {
40-
t.Parallel()
40+
// t.Parallel()
4141
mcm.SetProgramID(config.McmProgram)
4242
external_program_cpi_stub.SetProgramID(config.ExternalCpiStubProgram) // testing program
4343

‎chains/solana/contracts/tests/mcms/mcm_timelock_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
)
3030

3131
func TestMcmWithTimelock(t *testing.T) {
32-
t.Parallel()
32+
// t.Parallel()
3333
ctx := tests.Context(t)
3434

3535
mcm.SetProgramID(config.McmProgram)

‎chains/solana/contracts/tests/mcms/mcms_tx_capacity_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
)
3030

3131
func TestMcmsCapacity(t *testing.T) {
32-
t.Parallel()
32+
// t.Parallel()
3333
ctx := tests.Context(t)
3434

3535
mcm.SetProgramID(config.McmProgram)

0 commit comments

Comments
 (0)