blob: 69659f21cd18f52d2e4d52b00a3548da386677c0 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main_test
import (
"os"
"testing"
"v.io/x/ref/test/modules"
)
func TestMain(m *testing.M) {
modules.DispatchAndExitIfChild()
os.Exit(m.Run())
}