This commit is contained in:
firestar5683
2026-08-27 12:25:23 -05:00
parent adb5058cb8
commit 227b5cf82a
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -553,7 +553,7 @@ def compile_driving(
for qcom_only_flag in ("IMAGE", "NOLOCALS", "OPENPILOT_HACKS"):
compile_env.pop(qcom_only_flag, None)
compile_env.update({
"DEBUG": "2",
"DEBUG": "1",
"DEV": "USB+AMD:LLVM",
"WARP_DEV": "QCOM",
"FLOAT16": "1",
@@ -108,6 +108,7 @@ def test_external_gpu_compilation_is_opt_in(tmp_path, monkeypatch):
assert normal_kwargs["env"]["DEV"] == "QCOM"
assert normal_kwargs["env"]["IMAGE"] == "2"
assert "--out-of-band" in external_command
assert external_kwargs["env"]["DEBUG"] == "1"
assert external_kwargs["env"]["DEV"] == "USB+AMD:LLVM"
assert external_kwargs["env"]["WARP_DEV"] == "QCOM"
assert all(flag not in external_kwargs["env"] for flag in ("IMAGE", "NOLOCALS", "OPENPILOT_HACKS"))