Fix executor tests
This commit is contained in:
parent
551edaa139
commit
51d8231911
|
@ -37,9 +37,9 @@ func testExecutorContextWithChroot(t *testing.T) (*ExecutorContext, *allocdir.Al
|
||||||
"/foobar": "/does/not/exist",
|
"/foobar": "/does/not/exist",
|
||||||
}
|
}
|
||||||
|
|
||||||
taskEnv := env.NewTaskEnvironment(mock.Node())
|
|
||||||
alloc := mock.Alloc()
|
alloc := mock.Alloc()
|
||||||
task := alloc.Job.TaskGroups[0].Tasks[0]
|
task := alloc.Job.TaskGroups[0].Tasks[0]
|
||||||
|
taskEnv := env.NewBuilder(mock.Node(), alloc, task, "global").Build()
|
||||||
|
|
||||||
allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(os.TempDir(), alloc.ID))
|
allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(os.TempDir(), alloc.ID))
|
||||||
if err := allocDir.Build(); err != nil {
|
if err := allocDir.Build(); err != nil {
|
||||||
|
|
|
@ -40,9 +40,9 @@ func testLogger() *log.Logger {
|
||||||
//
|
//
|
||||||
// The caller is responsible for calling AllocDir.Destroy() to cleanup.
|
// The caller is responsible for calling AllocDir.Destroy() to cleanup.
|
||||||
func testExecutorContext(t *testing.T) (*ExecutorContext, *allocdir.AllocDir) {
|
func testExecutorContext(t *testing.T) (*ExecutorContext, *allocdir.AllocDir) {
|
||||||
taskEnv := env.NewTaskEnvironment(mock.Node())
|
|
||||||
alloc := mock.Alloc()
|
alloc := mock.Alloc()
|
||||||
task := alloc.Job.TaskGroups[0].Tasks[0]
|
task := alloc.Job.TaskGroups[0].Tasks[0]
|
||||||
|
taskEnv := env.NewBuilder(mock.Node(), alloc, task, "global").Build()
|
||||||
|
|
||||||
allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(os.TempDir(), alloc.ID))
|
allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(os.TempDir(), alloc.ID))
|
||||||
if err := allocDir.Build(); err != nil {
|
if err := allocDir.Build(); err != nil {
|
||||||
|
|
Loading…
Reference in New Issue