ci: stop using Ginkgo test command (#5194)

* ci: stop using Ginkgo test command

* ci: remove integrationtest directory for unit tests
This commit is contained in:
Marten Seemann
2025-06-02 10:38:05 +08:00
committed by GitHub
parent 3eb8a134cb
commit 08be0f73c0
13 changed files with 92 additions and 112 deletions

12
quic_linux_test.go Normal file
View File

@@ -0,0 +1,12 @@
//go:build linux
package quic
import (
"fmt"
)
func init() {
major, minor := kernelVersion()
fmt.Printf("Kernel Version: %d.%d\n\n", major, minor)
}