
Move the windows plugin to use the Host Compute (v2) APIs, as well as clean-up the code. Allows win-bridge to use either the old API or Host Compute (v2) api depending on a conf parameter. Fixes a leaked endpoint issue on windows for the v1 flow, and removes the hns/pkg from the linux test run.
14 lines
182 B
Go
14 lines
182 B
Go
package hns_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestHns(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Hns Suite")
|
|
}
|