root/tools/regression/bpf/bpf_filter/tests/test0077.h
/*-
 * Test 0077:   Check boundary conditions (BPF_ST)
 */

/* BPF program */
static struct bpf_insn  pc[] = {
        BPF_STMT(BPF_LD+BPF_IMM, 0xdeadc0de),
        BPF_STMT(BPF_ST, 0x8fffffff),
        BPF_STMT(BPF_RET+BPF_A, 0),
};

/* Packet */
static u_char   pkt[] = {
        0x00,
};

/* Packet length seen on wire */
static u_int    wirelen =       sizeof(pkt);

/* Packet length passed on buffer */
static u_int    buflen =        sizeof(pkt);

/* Invalid instruction */
static int      invalid =       1;

/* Expected return value */
static u_int    expect =        0xdeadc0de;

/* Expected signal */
#ifdef __amd64__
static int      expect_signal = SIGBUS;
#else
static int      expect_signal = SIGSEGV;
#endif