treewide: migrate to hakurei.app
All checks were successful
Test / Create distribution (push) Successful in 24s
Test / Sandbox (push) Successful in 46s
Test / Hakurei (push) Successful in 2m9s
Test / Sandbox (race detector) (push) Successful in 3m14s
Test / Planterette (push) Successful in 3m41s
Test / Hakurei (race detector) (push) Successful in 3m40s
Test / Flake checks (push) Successful in 1m18s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-07-03 03:30:39 +09:00
parent 1b5ecd9eaf
commit d2f9a9b83b
89 changed files with 205 additions and 205 deletions

View File

@@ -7,7 +7,7 @@ import (
"syscall"
"testing"
"git.gensokyo.uk/security/hakurei/helper"
"hakurei.app/helper"
)
func TestArgsString(t *testing.T) {

View File

@@ -10,7 +10,7 @@ import (
"sync"
"syscall"
"git.gensokyo.uk/security/hakurei/helper/proc"
"hakurei.app/helper/proc"
)
// NewDirect initialises a new direct Helper instance with wt as the null-terminated argument writer.

View File

@@ -8,7 +8,7 @@ import (
"os/exec"
"testing"
"git.gensokyo.uk/security/hakurei/helper"
"hakurei.app/helper"
)
func TestCmd(t *testing.T) {

View File

@@ -9,8 +9,8 @@ import (
"slices"
"sync"
"git.gensokyo.uk/security/hakurei/container"
"git.gensokyo.uk/security/hakurei/helper/proc"
"hakurei.app/container"
"hakurei.app/helper/proc"
)
// New initialises a Helper instance with wt as the null-terminated argument writer.

View File

@@ -7,10 +7,10 @@ import (
"os/exec"
"testing"
"git.gensokyo.uk/security/hakurei/container"
"git.gensokyo.uk/security/hakurei/helper"
"git.gensokyo.uk/security/hakurei/internal"
"git.gensokyo.uk/security/hakurei/internal/hlog"
"hakurei.app/container"
"hakurei.app/helper"
"hakurei.app/internal"
"hakurei.app/internal/hlog"
)
func TestContainer(t *testing.T) {

View File

@@ -8,7 +8,7 @@ import (
"os"
"time"
"git.gensokyo.uk/security/hakurei/helper/proc"
"hakurei.app/helper/proc"
)
var WaitDelay = 2 * time.Second

View File

@@ -11,7 +11,7 @@ import (
"testing"
"time"
"git.gensokyo.uk/security/hakurei/helper"
"hakurei.app/helper"
)
var (

View File

@@ -3,7 +3,7 @@ package helper_test
import (
"testing"
"git.gensokyo.uk/security/hakurei/helper"
"hakurei.app/helper"
)
func TestHelperStub(t *testing.T) { helper.InternalHelperStub() }