hs-test: support for multiple workers
[vpp.git] / extras / hs-test / suite_tap_test.go
1 package main
2
3 import (
4         "time"
5 )
6
7 type TapSuite struct {
8         HstSuite
9 }
10
11 func (s *TapSuite) SetupSuite() {
12         time.Sleep(1 * time.Second)
13         s.HstSuite.SetupSuite()
14         s.configureNetworkTopology("tap")
15 }