Convert to Go build system #2

Merged
maemachinebroke merged 7 commits from goification into main 2025-11-16 07:26:09 +09:00
Showing only changes of commit d0431ba1ed - Show all commits

View File

@@ -1 +1,19 @@
package plt_build
import (
"os"
"os/exec"
"testing"
"time"
)
func TestPltBuild(t *testing.T) {
cmd := exec.CommandContext(t.Context(), "./gradlew", "test")
cmd.WaitDelay = 100 * time.Millisecond
cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr
err := cmd.Run()
if err != nil {
t.Error(err)
}
}