|
@@ -34,11 +34,14 @@ def main() -> None:
|
|
linux_target = LinuxBinary(pathlib.Path("server_srv.so"))
|
|
linux_target = LinuxBinary(pathlib.Path("server_srv.so"))
|
|
windows_target = WindowsBinary(pathlib.Path("server.dll"))
|
|
windows_target = WindowsBinary(pathlib.Path("server.dll"))
|
|
|
|
|
|
- for name, entry in entries.items():
|
|
|
|
- target: PlatformBinary = linux_target
|
|
|
|
- if entry.target.suffix == ".dll":
|
|
|
|
- target = windows_target
|
|
|
|
|
|
+ linux_target.path = pathlib.Path("232250/tf/bin/server_srv.so")
|
|
|
|
+ windows_target.path = pathlib.Path("232250/tf/bin/server.dll")
|
|
|
|
+
|
|
|
|
+ candidate_targets: list[PlatformBinary] = [linux_target, windows_target]
|
|
|
|
|
|
|
|
+ for name, entry in entries.items():
|
|
|
|
+ target = entry.get_target_match(candidate_targets)
|
|
|
|
+ assert target, f"No binary match for {entry.target}"
|
|
try:
|
|
try:
|
|
for key, result in entry.process(target).items():
|
|
for key, result in entry.process(target).items():
|
|
print("- [OK]", key.substitute(name=name), "=", result)
|
|
print("- [OK]", key.substitute(name=name), "=", result)
|