blob: 65ed9a5f0030b66ea4eca90c1bb810d01cd74114 [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.
// This file was auto-generated via go generate.
// DO NOT UPDATE MANUALLY
package filelocker
import "fmt"
import "testing"
import "os"
import "v.io/x/ref/lib/modules"
import "v.io/x/ref/lib/testutil"
func init() {
modules.RegisterChild("testLockChild", ``, testLockChild)
}
func TestMain(m *testing.M) {
testutil.Init()
if modules.IsModulesProcess() {
if err := modules.Dispatch(); err != nil {
fmt.Fprintf(os.Stderr, "modules.Dispatch failed: %v\n", err)
os.Exit(1)
}
return
}
os.Exit(m.Run())
}