From a284de4c1c997bade67d82c914f48deab0068a83 Mon Sep 17 00:00:00 2001 From: xgopilot Date: Thu, 15 Jan 2026 02:16:34 +0000 Subject: [PATCH 1/2] chore: skip nondeterministic goroutine run result test The goroutine test output is nondeterministic by design since multiple goroutines run concurrently without enforced execution order. The Go scheduler does not guarantee the order of goroutine execution or printed output. Setting expect.txt to ";" skips the run comparison while still allowing the IR generation test to run. Closes #1563 Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: luoliwoshang <51194195+luoliwoshang@users.noreply.github.com> --- cl/_testgo/goroutine/expect.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cl/_testgo/goroutine/expect.txt b/cl/_testgo/goroutine/expect.txt index faff0077f5..1c8a0e7976 100644 --- a/cl/_testgo/goroutine/expect.txt +++ b/cl/_testgo/goroutine/expect.txt @@ -1,2 +1 @@ -hello -Hello, goroutine +; \ No newline at end of file From bd3343c183759469c6247fb77c2a03deb04af039 Mon Sep 17 00:00:00 2001 From: xgopilot Date: Thu, 15 Jan 2026 04:29:09 +0000 Subject: [PATCH 2/2] chore: skip nondeterministic selects run result test The selects test output is nondeterministic due to concurrent goroutines and select statements without enforced execution order. Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: luoliwoshang <51194195+luoliwoshang@users.noreply.github.com> --- cl/_testgo/selects/expect.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cl/_testgo/selects/expect.txt b/cl/_testgo/selects/expect.txt index 6b8190bd04..1c8a0e7976 100644 --- a/cl/_testgo/selects/expect.txt +++ b/cl/_testgo/selects/expect.txt @@ -1,4 +1 @@ -c1<- -<-c1 -c2<- -<-c2 +; \ No newline at end of file