19099: Refactor container shell backend so it's not docker-specific.
[arvados.git] / lib / crunchrun / crunchrun_test.go
index 1d2c7b09fd0773466f54a0846a5507ad64627623..9e2286d6881d4cb005b331a23b4fa7b907de6727 100644 (file)
@@ -136,6 +136,10 @@ func (e *stubExecutor) Close()                          { e.closed = true }
 func (e *stubExecutor) Wait(context.Context) (int, error) {
        return <-e.exit, e.waitErr
 }
+func (e *stubExecutor) InjectCommand(ctx context.Context, _, _ string, _ bool, _ []string) (*exec.Cmd, error) {
+       return nil, errors.New("unimplemented")
+}
+func (e *stubExecutor) IPAddress() (string, error) { return "", errors.New("unimplemented") }
 
 const fakeInputCollectionPDH = "ffffffffaaaaaaaa88888888eeeeeeee+1234"