diff options
Diffstat (limited to 'pkg/internal/testtool/expected/expected.go')
| -rw-r--r-- | pkg/internal/testtool/expected/expected.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/internal/testtool/expected/expected.go b/pkg/internal/testtool/expected/expected.go new file mode 100644 index 00000000..c0e8e4a2 --- /dev/null +++ b/pkg/internal/testtool/expected/expected.go @@ -0,0 +1,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" +) |
