blob: 9597c2e5518c6d6d569f2792855be50ebf674829 [file] [log] [blame]
Cosmos Nicolaoub1c49cd2015-02-24 15:24:08 -08001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
Jiri Simsae7fc94d2015-02-25 12:12:07 -08004
Suharsh Sivakumard19c95d2015-02-19 14:44:50 -08005// This file was auto-generated via go generate.
6// DO NOT UPDATE MANUALLY
Suharsh Sivakumarcbfe4742015-03-11 14:54:22 -07007package ipc
Suharsh Sivakumard19c95d2015-02-19 14:44:50 -08008
9import "fmt"
10import "testing"
11import "os"
12
Cosmos Nicolaou1381f8a2015-03-13 09:40:34 -070013import "v.io/x/ref/test"
14import "v.io/x/ref/test/modules"
Suharsh Sivakumard19c95d2015-02-19 14:44:50 -080015
Suharsh Sivakumard19c95d2015-02-19 14:44:50 -080016func TestMain(m *testing.M) {
Cosmos Nicolaou1381f8a2015-03-13 09:40:34 -070017 test.Init()
Cosmos Nicolaou42a17362015-03-10 16:40:18 -070018 if modules.IsModulesChildProcess() {
Suharsh Sivakumard19c95d2015-02-19 14:44:50 -080019 if err := modules.Dispatch(); err != nil {
20 fmt.Fprintf(os.Stderr, "modules.Dispatch failed: %v\n", err)
21 os.Exit(1)
22 }
23 return
24 }
25 os.Exit(m.Run())
26}