blob: c0e8e4a29c76511ea738e19c3e1c7cf70d8db26c (
plain)
1
2
3
4
5
6
7
8
9
|
// Package expected contains data shared between test helper and test harness.
package expected
const (
// Magic are magic bytes in the binfmt test case.
Magic = "\xca\xfe\xba\xbe\xfd\xfd"
// Full is the full content of the binfmt test case executable.
Full = Magic + ":3"
)
|