Skip to content

Commit

Permalink
exclude vl3 tests from parallel suite in features and ipsec tests
Browse files Browse the repository at this point in the history
Signed-off-by: NikitaSkrynnik <nikita.skrynnik@xored.com>
NikitaSkrynnik committed Aug 10, 2024
1 parent bb7fb3c commit c527a99
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions tests_single/feature_test.go
Original file line number Diff line number Diff line change
@@ -60,6 +60,8 @@ func TestRunFeatureSuite(t *testing.T) {
featuresSuite.TestVl3_dns,
featuresSuite.TestVl3_scale_from_zero,
featuresSuite.TestVl3_lb,
featuresSuite.TestVl3_dual_stack,
featuresSuite.TestVl3_ipv6,
featuresSuite.TestNse_composition,
featuresSuite.TestSelect_forwarder,
featuresSuite.TestScaled_registry))
3 changes: 2 additions & 1 deletion tests_single/ipsec_test.go
Original file line number Diff line number Diff line change
@@ -24,5 +24,6 @@ import (
)

func TestRunIpsecSuite(t *testing.T) {
parallel.Run(t, new(ipsec_mechanism.Suite))
ipsecSuite := new(ipsec_mechanism.Suite)
parallel.Run(t, new(ipsec_mechanism.Suite), parallel.WithRunningTestsSynchronously(ipsecSuite.TestVl3_basic))
}

0 comments on commit c527a99

Please sign in to comment.