exec_basic uses Spawner; create shared test harness for executors

This commit is contained in:
Alex Dadgar
2015-11-05 09:58:57 -08:00
parent 8ed031c45e
commit 1d21991e28
7 changed files with 317 additions and 233 deletions

View File

@@ -41,6 +41,10 @@ var (
)
func NewExecutor() Executor {
return NewLinuxExecutor()
}
func NewLinuxExecutor() Executor {
return &LinuxExecutor{}
}