1
0
Fork 0
mirror of https://github.com/kidoman/embd synced 2025-07-03 20:07:40 +02:00

simplify package structure

This commit is contained in:
Karan Misra 2014-03-03 00:51:23 +05:30
parent 3cae4064dc
commit 36f2c0486d
41 changed files with 736 additions and 885 deletions

View file

@ -1,29 +0,0 @@
package host
import "testing"
func TestKernelVersionParse(t *testing.T) {
var tests = []struct {
versionStr string
major, minor, patch int
}{
{
"3.8.2",
3, 8, 2,
},
{
"3.8.10+",
3, 8, 10,
},
}
for _, test := range tests {
major, minor, patch, err := parseVersion(test.versionStr)
if err != nil {
t.Errorf("Failed parsing %q: %v", test.versionStr, err)
continue
}
if major != test.major || minor != test.minor || patch != test.patch {
t.Errorf("Parse of %q: got (%v, %v, %v) want (%v, %v, %v)", test.versionStr, major, minor, patch, test.major, test.minor, test.patch)
}
}
}