mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-10 21:53:57 +08:00
340fdd9366
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
12 lines
224 B
Go
12 lines
224 B
Go
package escapetest
|
|
|
|
import "testing"
|
|
|
|
// The actual test function is in escape.go
|
|
// so that it can use cgo (import "C").
|
|
// This wrapper is here for gotest to find.
|
|
|
|
func TestEscapeJSON(t *testing.T) {
|
|
testEscapeJSON(t)
|
|
}
|