From 937e55eb4645e67d56ab6dc6f91145505dc5e4b9 Mon Sep 17 00:00:00 2001 From: xushiwei Date: Fri, 24 May 2024 10:01:41 +0800 Subject: [PATCH] TestFromTestgo --- cl/compile_test.go | 4 ---- ssa/cl_test.go | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cl/compile_test.go b/cl/compile_test.go index 48639cf5..2d601ae2 100644 --- a/cl/compile_test.go +++ b/cl/compile_test.go @@ -28,10 +28,6 @@ func testCompile(t *testing.T, src, expected string) { cltest.TestCompileEx(t, src, "foo.go", expected) } -func TestFromTestgo(t *testing.T) { - cltest.FromDir(t, "", "./_testgo", false) -} - func TestFromTestpy(t *testing.T) { cltest.FromDir(t, "", "./_testpy", false) } diff --git a/ssa/cl_test.go b/ssa/cl_test.go index e046abfa..513944c1 100644 --- a/ssa/cl_test.go +++ b/ssa/cl_test.go @@ -25,6 +25,10 @@ import ( "github.com/goplus/llgo/ssa/ssatest" ) +func TestFromTestgo(t *testing.T) { + cltest.FromDir(t, "", "../cl/_testgo", false) +} + func TestFromTestpy(t *testing.T) { cltest.FromDir(t, "", "../cl/_testpy", false) }