blob: 98cd476464aeeb79fffc27d63c42b0d103e5f42f [file] [log] [blame]
Asim Shankarc32a46e2015-03-22 03:00:31 -07001// 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.
4
5// This file was auto-generated via go generate.
6// DO NOT UPDATE MANUALLY
Todd Wang95873902015-05-22 14:21:30 -07007
Asim Shankarc32a46e2015-03-22 03:00:31 -07008package main_test
9
Todd Wang95873902015-05-22 14:21:30 -070010import (
11 "os"
12 "testing"
Asim Shankarc32a46e2015-03-22 03:00:31 -070013
Todd Wang95873902015-05-22 14:21:30 -070014 "v.io/x/ref/test"
15 "v.io/x/ref/test/modules"
16 "v.io/x/ref/test/v23tests"
17)
Asim Shankarc32a46e2015-03-22 03:00:31 -070018
19func TestMain(m *testing.M) {
20 test.Init()
Todd Wang95873902015-05-22 14:21:30 -070021 modules.DispatchAndExitIfChild()
Asim Shankarc32a46e2015-03-22 03:00:31 -070022 cleanup := v23tests.UseSharedBinDir()
23 r := m.Run()
24 cleanup()
25 os.Exit(r)
26}
27
28func TestV23Proxyd(t *testing.T) {
29 v23tests.RunTest(t, V23TestProxyd)
30}