Skip to content

Commit 7b018e2

Browse files
committed
Fix: Enable test runner again
The test runner was accidentally disabled in #351, in an attempt to fix the publish errors introduced by #304 (caused by a bug in cargo: rust-lang/cargo#12225). As a result, the test runner became a no-op as neither the bios nor the uefi features were enabled. This commit fixes the issue by enabling both features by default. Once the cargo bug is fixed, we might want to switch back to the feature configuration added of #304. Fixes #405
1 parent a1b2eb8 commit 7b018e2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: tests/runner/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ edition = "2021"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[features]
10+
default = ["bios", "uefi"]
1011
bios = ["bootloader/bios"]
1112
uefi = ["bootloader/uefi", "dep:ovmf-prebuilt"]
1213

0 commit comments

Comments
 (0)