forked from rosa/hakurei
8d72b9e5bd
This transparently supports curing foreign exec artifacts. Signed-off-by: Ophestra <cat@gensokyo.uk>
10 lines
280 B
Go
10 lines
280 B
Go
// 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"
|
|
)
|