Files
hakurei/internal/rosa/llvm_test.go
T
cat ce53fa9249 internal/rosa/llvm: early-runtimes for gentoo stage only
This bootstrap step is not required for a native Rosa OS stage0 distribution.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2026-08-25 15:26:35 +09:00

22 lines
341 B
Go

package rosa_test
import (
"testing"
"hakurei.app/internal/pkg"
"hakurei.app/internal/rosa"
)
func TestLLVMInputs(t *testing.T) {
const wantInputCount = 466
_, llvm := rosa.MustLoad(rosa.H("llvm"))
var n int
for range pkg.Inputs(llvm) {
n++
}
if n != wantInputCount {
t.Errorf("Inputs: %d, want %d", n, wantInputCount)
}
}