github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/memsys/memsys_suite_test.go (about)

     1  // Package memsys provides memory management and Slab allocation
     2  // with io.Reader and io.Writer interfaces on top of a scatter-gather lists
     3  // (of reusable buffers)
     4  /*
     5   * Copyright (c) 2018-2023, NVIDIA CORPORATION. All rights reserved.
     6   */
     7  package memsys_test
     8  
     9  import (
    10  	"testing"
    11  
    12  	"github.com/NVIDIA/aistore/hk"
    13  	. "github.com/onsi/ginkgo/v2"
    14  	. "github.com/onsi/gomega"
    15  )
    16  
    17  func init() {
    18  	hk.TestInit()
    19  }
    20  
    21  func TestMemsys(t *testing.T) {
    22  	RegisterFailHandler(Fail)
    23  	RunSpecs(t, t.Name())
    24  }