Skip to content

Commit

Permalink
PR: remove hvsock feature
Browse files Browse the repository at this point in the history
Signed-off-by: Hamza El-Saawy <[email protected]>
  • Loading branch information
helsaawy committed Jun 19, 2024
1 parent 9c673fb commit fe99b1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 4 additions & 4 deletions test/functional/hvsock_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const (

func TestHVSock_UVM_HostBind(t *testing.T) {
require.Build(t, osversion.RS5)
requireFeatures(t, featureWCOW, featureUVM, featureHVSocket)
requireFeatures(t, featureWCOW, featureUVM)

ctx := util.Context(context.Background(), t)

Expand Down Expand Up @@ -196,7 +196,7 @@ func TestHVSock_UVM_HostBind(t *testing.T) {

func TestHVSock_UVM_GuestBind(t *testing.T) {
require.Build(t, osversion.RS5)
requireFeatures(t, featureWCOW, featureUVM, featureHVSocket)
requireFeatures(t, featureWCOW, featureUVM)

ctx := util.Context(context.Background(), t)

Expand Down Expand Up @@ -322,7 +322,7 @@ func TestHVSock_UVM_GuestBind(t *testing.T) {

func TestHVSock_Container_HostBind(t *testing.T) {
require.Build(t, osversion.RS5)
requireFeatures(t, featureWCOW, featureUVM, featureContainer, featureHVSocket)
requireFeatures(t, featureWCOW, featureUVM, featureContainer)

ctx := util.Context(context.Background(), t)

Expand Down Expand Up @@ -470,7 +470,7 @@ func TestHVSock_Container_HostBind(t *testing.T) {

func TestHVSock_Container_GuestBind(t *testing.T) {
require.Build(t, osversion.RS5)
requireFeatures(t, featureWCOW, featureUVM, featureContainer, featureHVSocket)
requireFeatures(t, featureWCOW, featureUVM, featureContainer)

ctx := util.Context(context.Background(), t)

Expand Down
2 changes: 0 additions & 2 deletions test/functional/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ const (
featureSCSI = "SCSI" // SCSI disk (virtuall and physical) mounts
featureVSMB = "vSMB" // virtual SMB file shares
featureVPMEM = "vPMEM" // virtual PMEM mounts
featureHVSocket = "HVSocket" // Hyper-V socket functionality
)

var allFeatures = []string{
Expand All @@ -118,7 +117,6 @@ var allFeatures = []string{
featureSCSI,
featureVSMB,
featureVPMEM,
featureHVSocket,
}

var (
Expand Down

0 comments on commit fe99b1f

Please sign in to comment.