hs-test: add nginx test
[vpp.git] / extras / hs-test / framework_test.go
index 33bc1f3..056be13 100755 (executable)
@@ -1,9 +1,9 @@
 package main
 
 import (
-       "testing"
        "io/ioutil"
        "os"
+       "testing"
 
        "github.com/edwarnicke/exechelper"
        "github.com/stretchr/testify/assert"
@@ -12,17 +12,11 @@ import (
 )
 
 func IsPersistent() bool {
-       if os.Getenv("HST_PERSIST") == "1" {
-               return true
-       }
-       return false
+       return os.Getenv("HST_PERSIST") == "1"
 }
 
 func IsVerbose() bool {
-       if os.Getenv("HST_VERBOSE") == "1" {
-               return true
-       }
-       return false
+       return os.Getenv("HST_VERBOSE") == "1"
 }
 
 type HstSuite struct {
@@ -184,3 +178,8 @@ func TestVeths(t *testing.T) {
        var m VethsSuite
        suite.Run(t, &m)
 }
+
+func TestNoTopo(t *testing.T) {
+       var m NoTopoSuite
+       suite.Run(t, &m)
+}