blob: de4a73bdcaa24709a6461181978d61d4a5e0a957 [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.
// TODO(ivanpi): Port to v23test and reenable.
// +build ignore
package client_test
import (
"os"
"testing"
"v.io/x/ref/test/modules"
"v.io/x/ref/test/v23tests"
)
func TestMain(m *testing.M) {
modules.DispatchAndExitIfChild()
cleanup := v23tests.UseSharedBinDir()
r := m.Run()
cleanup()
os.Exit(r)
}
func TestV23DeviceAddAndStreamCreate(t *testing.T) {
v23tests.RunTest(t, V23TestDeviceAddAndStreamCreate)
}
func TestV23StreamConfigAndList(t *testing.T) {
v23tests.RunTest(t, V23TestStreamConfigAndList)
}