| // Copyright 2016 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| func TestVMLoadExtensionNotImplemented(t *testing.T) { |
| _, _, err := testVM(t, []bpf.Instruction{ |
| if errStr(err) != "extension 100 not implemented" { |
| t.Fatalf("unexpected error: %v", err) |
| func TestVMLoadExtensionExtLen(t *testing.T) { |
| vm, done, err := testVM(t, []bpf.Instruction{ |
| t.Fatalf("failed to load BPF program: %v", err) |
| out, err := vm.Run([]byte{ |
| t.Fatalf("unexpected error while running program: %v", err) |
| if want, got := 4, out; want != got { |
| t.Fatalf("unexpected number of output bytes:\n- want: %d\n- got: %d", |