All checks were successful
Test / Create distribution (push) Successful in 35s
Test / Sandbox (push) Successful in 2m25s
Test / Hakurei (push) Successful in 3m24s
Test / Hpkg (push) Successful in 4m10s
Test / Sandbox (race detector) (push) Successful in 4m22s
Test / Hakurei (race detector) (push) Successful in 5m13s
Test / Flake checks (push) Successful in 1m30s
These were getting very annoying to type. Signed-off-by: Ophestra <cat@gensokyo.uk>
62 lines
1.0 KiB
Go
62 lines
1.0 KiB
Go
package pipewire_test
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
var (
|
|
//go:embed testdata/c0s0p0
|
|
c0s0header string
|
|
//go:embed testdata/c0s0p1
|
|
c0s0pod string
|
|
|
|
//go:embed testdata/c0s1p0
|
|
c0s1header string
|
|
//go:embed testdata/c0s1p1
|
|
c0s1pod string
|
|
|
|
//go:embed testdata/c0s2p0
|
|
c0s2header string
|
|
//go:embed testdata/c0s2p1
|
|
c0s2pod string
|
|
|
|
//go:embed testdata/c0s3p0
|
|
c0s3header string
|
|
//go:embed testdata/c0s3p1
|
|
c0s3pod string
|
|
|
|
//go:embed testdata/c1r0p0
|
|
c1r0header string
|
|
//go:embed testdata/c1r0p1
|
|
c1r0pod string
|
|
//go:embed testdata/c1r0p2
|
|
c1r0footer string
|
|
|
|
//go:embed testdata/c1r1p0
|
|
c1r1header string
|
|
//go:embed testdata/c1r1p1
|
|
c1r1pod string
|
|
|
|
//go:embed testdata/c1r2p0
|
|
c1r2header string
|
|
//go:embed testdata/c1r2p1
|
|
c1r2pod string
|
|
|
|
//go:embed testdata/c1r3p0
|
|
c1r3header string
|
|
//go:embed testdata/c1r3p1
|
|
c1r3pod string
|
|
|
|
//go:embed testdata/c1r4p0
|
|
c1r4header string
|
|
//go:embed testdata/c1r4p1
|
|
c1r4pod string
|
|
|
|
//go:embed testdata/c1r5p0
|
|
c1r5header string
|
|
//go:embed testdata/c1r5p1
|
|
c1r5pod string
|
|
//go:embed testdata/c1r5p2
|
|
c1r5footer string
|
|
)
|