feat(launcher): stabilize prepared content updates
Some checks failed
CI / linux-portable (push) Failing after 3m12s
CI / windows-gate (push) Failing after 6m35s
CI / release (push) Has been skipped

This commit is contained in:
Erik 2026-08-25 19:17:13 +02:00
parent f160f3fee1
commit af9327a17b
42 changed files with 3706 additions and 147 deletions

View file

@ -43,4 +43,27 @@ public sealed class BakeProcessRunnerTests
Assert.False(startInfo.Environment.ContainsKey(
BakePublicationGuardPaths.NonceEnvironmentVariable));
}
[Fact]
public void FilteredOverlayArgumentsUseBakeToolsPinnedHexLists()
{
var request = new BakeProcessRequest(
"acdream-bake",
"retail-dats",
"data/pak/update.pak",
4,
DatIds: [0x01000001u, 0x02000002u],
Landblocks: [0x0A, 0xFE]);
Assert.Equal(
[
"--dat-dir", "retail-dats",
"--out", "data/pak/update.pak",
"--threads", "4",
"--progress-json",
"--ids", "0x01000001,0x02000002",
"--landblocks", "0x0A,0xFE",
],
request.Arguments);
}
}