From 18e96021edb8f4de80626d7f50240964e37d570e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 13 Sep 2017 15:34:21 +0200 Subject: sys: move linux descriptions to sys/linux --- pkg/compiler/compiler_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/compiler/compiler_test.go') diff --git a/pkg/compiler/compiler_test.go b/pkg/compiler/compiler_test.go index d6d139161..d82dd4775 100644 --- a/pkg/compiler/compiler_test.go +++ b/pkg/compiler/compiler_test.go @@ -15,11 +15,11 @@ func TestCompileAll(t *testing.T) { eh := func(pos ast.Pos, msg string) { t.Logf("%v: %v", pos, msg) } - desc := ast.ParseGlob(filepath.Join("..", "..", "sys", "*.txt"), eh) + desc := ast.ParseGlob(filepath.Join("..", "..", "sys", "linux", "*.txt"), eh) if desc == nil { t.Fatalf("parsing failed") } - glob := filepath.Join("..", "..", "sys", "*_"+runtime.GOARCH+".const") + glob := filepath.Join("..", "..", "sys", "linux", "*_"+runtime.GOARCH+".const") consts := DeserializeConstsGlob(glob, eh) if consts == nil { t.Fatalf("reading consts failed") -- cgit mrf-deployment