All checks were successful
Test / Create distribution (push) Successful in 52s
Test / Sandbox (push) Successful in 2m0s
Test / ShareFS (push) Successful in 2m51s
Test / Hakurei (push) Successful in 3m5s
Test / Sandbox (race detector) (push) Successful in 6m5s
Test / Hakurei (race detector) (push) Successful in 7m8s
Test / Flake checks (push) Successful in 1m21s
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"
|
|
)
|