| // 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. |
| // A simple command-line tool to run the benchmark server. |
| _ "v.io/x/ref/runtime/factories/static" |
| "v.io/x/ref/runtime/internal/rpc/stress/internal" |
| duration = flag.Duration("duration", 0, "duration of the stress test to run; if zero, there is no limit.") |
| runtime.GOMAXPROCS(runtime.NumCPU()) |
| ctx, shutdown := v23.Init() |
| server, ep, stop := internal.StartServer(ctx, v23.GetListenSpec(ctx)) |
| vlog.Infof("listening on %s", ep.Name()) |
| var timeout <-chan time.Time |
| timeout = time.After(*duration) |
| case <-signals.ShutdownOnSignals(ctx): |
| if err := server.Stop(); err != nil { |
| vlog.Fatalf("Stop() failed: %v", err) |