Files
hakurei/system/dbus/proc_test.go
Ophestra 46cd3a28c8 container: remove global msg
This frees all container instances of side effects.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2025-09-29 06:11:47 +09:00

16 lines
200 B
Go

package dbus_test
import (
"os"
"testing"
"hakurei.app/container"
"hakurei.app/helper"
)
func TestMain(m *testing.M) {
container.TryArgv0(nil)
helper.InternalHelperStub()
os.Exit(m.Run())
}