1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/pkg/platform/utsname_int8_test.go
Raja Sami bdc87676bf Increase the Coverage of pkg/platform
Signed-off-by: Raja Sami <raja.sami@tenpearls.com>
2017-05-31 13:26:40 +05:00

16 lines
428 B
Go

// +build linux,386 linux,amd64 linux,arm64
package platform
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCharToString(t *testing.T) {
machineInBytes := [65]int8{120, 56, 54, 95, 54, 52}
machineInString := charsToString(machineInBytes)
assert.NotNil(t, machineInString, "Unable to convert char into string.")
assert.Equal(t, string("x86_64"), machineInString, "Parsed machine code not equal.")
}