blob: 482c162c5c67baac8274b1d8e9bbe4ca46ac6fdf [file] [log] [blame]
// 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
}