diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-07-27 10:06:07 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-27 10:10:14 -0700 |
commit | 77552f1c770da7413c3c8212443328c9081901c0 (patch) | |
tree | 312b96012165958d9a0721aba07f5159127f7406 /test/benchmarks/media/media.go | |
parent | 29e5609b228363bcc435a8828f9b6ee19018a525 (diff) |
Port ffmpeg benchmark
PiperOrigin-RevId: 323383320
Diffstat (limited to 'test/benchmarks/media/media.go')
-rw-r--r-- | test/benchmarks/media/media.go | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/benchmarks/media/media.go b/test/benchmarks/media/media.go new file mode 100644 index 000000000..c7b35b758 --- /dev/null +++ b/test/benchmarks/media/media.go @@ -0,0 +1,31 @@ +// Copyright 2020 The gVisor Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package media holds benchmarks around media processing applications. +package media + +import ( + "os" + "testing" + + "gvisor.dev/gvisor/test/benchmarks/harness" +) + +var h harness.Harness + +// TestMain is the main method for package media. +func TestMain(m *testing.M) { + h.Init() + os.Exit(m.Run()) +} |