mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 16:35:44 +03:00
18 lines
356 B
Go
18 lines
356 B
Go
package executor
|
|
|
|
import (
|
|
"testing"
|
|
|
|
ctestutil "github.com/hashicorp/nomad/client/testutil"
|
|
"github.com/hashicorp/nomad/helper/testtask"
|
|
)
|
|
|
|
func init() {
|
|
// Add test binary to chroot during test run.
|
|
chrootEnv[testtask.Path()] = testtask.Path()
|
|
}
|
|
|
|
func TestExecutorLinux(t *testing.T) {
|
|
testExecutor(t, NewLinuxExecutor, ctestutil.ExecCompatible)
|
|
}
|