hs-test: temp skip some tests

- Some tests are broken in the CI, skipping them
  for now

Type: test

Change-Id: I3d4efeee63b819956e5ffa1b3920e81962a2fcc9
Signed-off-by: Adrian Villin <avillin@cisco.com>
This commit is contained in:
Adrian Villin
2024-05-31 10:11:34 -04:00
parent fd366b4da6
commit 00e35ce8e0
2 changed files with 6 additions and 1 deletions

View File

@ -204,6 +204,7 @@ func HeaderServerTest(s *NoTopoSuite) {
}
func NginxAsServerTest(s *NoTopoSuite) {
s.skip("Broken in the CI")
query := "return_ok"
finished := make(chan error, 1)
@ -278,14 +279,17 @@ func runNginxPerf(s *NoTopoSuite, mode, ab_or_wrk string) error {
// unstable with multiple workers
func NginxPerfCpsTest(s *NoTopoSuite) {
s.skip("Broken in the CI")
s.SkipIfMultiWorker()
s.assertNil(runNginxPerf(s, "cps", "ab"))
}
func NginxPerfRpsTest(s *NoTopoSuite) {
s.skip("Broken in the CI")
s.assertNil(runNginxPerf(s, "rps", "ab"))
}
func NginxPerfWrkTest(s *NoTopoSuite) {
s.skip("Broken in the CI")
s.assertNil(runNginxPerf(s, "", "wrk"))
}

View File

@ -5,11 +5,12 @@ import (
)
func init() {
registerNginxTests(MirroringTest)
// registerNginxTests(MirroringTest)
}
// broken when CPUS > 1
func MirroringTest(s *NginxSuite) {
s.skip("Broken in the CI")
s.SkipIfMultiWorker()
proxyAddress := s.getInterfaceByName(mirroringClientInterfaceName).peer.ip4AddressString()