blob: 482c162c5c67baac8274b1d8e9bbe4ca46ac6fdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2019 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package build
// TypeBuilder implements the builder interface.
type testBuilder struct{}
func (tb testBuilder) build(targetArch, vmType, kernelDir, outputDir, compiler, userspaceDir,
cmdlineFile, sysctlFile string, config []byte) error {
return nil
}
func (tb testBuilder) clean(string, string) error {
return nil
}
|