From e7e2ba479055714d7d6c9eed94b3647fc2506d7b Mon Sep 17 00:00:00 2001 From: Li Jie Date: Tue, 14 Jan 2025 12:08:12 +0800 Subject: [PATCH] test: test llgo run -v --- compiler/cmd/llgo/llgo_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compiler/cmd/llgo/llgo_test.go b/compiler/cmd/llgo/llgo_test.go index 4863f88b..88b4bd7b 100644 --- a/compiler/cmd/llgo/llgo_test.go +++ b/compiler/cmd/llgo/llgo_test.go @@ -131,6 +131,11 @@ func TestProjectCommands(t *testing.T) { args: []string{"llgo", "run", "main.go"}, wantErr: false, }, + { + name: "run command", + args: []string{"llgo", "run", "-v", "."}, + wantErr: false, + }, } for _, tt := range tests {