blob: ad80b910890c344f56e159d3dc52a2ea68b88cbf [file] [log] [blame]
package c_test
import (
"os"
"testing"
)
func TestC(t *testing.T) {
println("TestC")
}
func TestMain(m *testing.M) {
println("TestMain start")
code := m.Run()
println("TestMain end")
os.Exit(code)
}