diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-07-23 14:21:59 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-07-23 13:30:23 +0000 |
| commit | 790cc189ae51a4af370f9d83141cb58cdbaca6a7 (patch) | |
| tree | 564db7896df67474c4af5a57a4a2daf1eaaf3f8e /vm/vm_test.go | |
| parent | 53c2e8ad91fd5f64989a4e6a923926990130b5cd (diff) | |
vm: check preemption string only for gce instances
Fixes #5028
Diffstat (limited to 'vm/vm_test.go')
| -rw-r--r-- | vm/vm_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/vm_test.go b/vm/vm_test.go index eb642830f..bede53fb7 100644 --- a/vm/vm_test.go +++ b/vm/vm_test.go @@ -82,7 +82,8 @@ func init() { return &testPool{}, nil } vmimpl.Register("test", vmimpl.Type{ - Ctor: ctor, + Ctor: ctor, + Preemptible: true, }) } |
