Skip to content

Commit

Permalink
test_argument_parsing: Update tests after previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jrtc27 committed Feb 14, 2024
1 parent 4e1f838 commit f6df3fa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/test_argument_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -828,12 +828,12 @@ def test_disk_image_path(target, expected_name):
pytest.param(
"cheribsd-riscv64-purecap",
["--cheribsd/build-fett-kernels", "--cheribsd/no-build-alternate-abi-kernels"],
["CHERI-QEMU-FETT", "CHERI-QEMU"],
["CHERI-QEMU", "CHERI-QEMU-FETT"],
),
pytest.param(
"cheribsd-riscv64-purecap",
["--cheribsd/build-fett-kernels"],
["CHERI-QEMU-FETT", "CHERI-QEMU", "CHERI-PURECAP-QEMU"],
["CHERI-QEMU", "CHERI-QEMU-FETT", "CHERI-PURECAP-QEMU"],
),
pytest.param(
"cheribsd-riscv64-purecap",
Expand All @@ -843,7 +843,7 @@ def test_disk_image_path(target, expected_name):
pytest.param(
"cheribsd-riscv64-purecap",
["--cheribsd/build-bench-kernels"],
["CHERI-QEMU", "CHERI-QEMU-NODEBUG", "CHERI-PURECAP-QEMU-NODEBUG", "CHERI-PURECAP-QEMU"],
["CHERI-QEMU", "CHERI-QEMU-NODEBUG", "CHERI-PURECAP-QEMU", "CHERI-PURECAP-QEMU-NODEBUG"],
),
pytest.param(
"cheribsd-riscv64-purecap",
Expand All @@ -852,12 +852,12 @@ def test_disk_image_path(target, expected_name):
"--cheribsd/build-fpga-kernels",
"--cheribsd/no-build-alternate-abi-kernels",
],
["CHERI-QEMU-FETT", "CHERI-QEMU", "CHERI-FETT"],
["CHERI-QEMU", "CHERI-QEMU-FETT", "CHERI-FETT"],
),
pytest.param(
"cheribsd-riscv64-purecap",
["--cheribsd/build-fett-kernels", "--cheribsd/build-fpga-kernels"],
["CHERI-QEMU-FETT", "CHERI-QEMU", "CHERI-PURECAP-QEMU", "CHERI-FETT", "CHERI-PURECAP-FETT"],
["CHERI-QEMU", "CHERI-QEMU-FETT", "CHERI-PURECAP-QEMU", "CHERI-FETT", "CHERI-PURECAP-FETT"],
),
pytest.param(
"cheribsd-riscv64-purecap",
Expand Down Expand Up @@ -937,8 +937,8 @@ def test_kernel_configs(target, config_options: "list[str]", expected_kernels: "
pytest.param(
"cheribsd-mfs-root-kernel-riscv64-purecap",
["--cheribsd/build-nocaprevoke-kernel"],
["CHERI-NOCAPREVOKE-QEMU-MFS-ROOT", "CHERI-QEMU-MFS-ROOT", "CHERI-PURECAP-NOCAPREVOKE-QEMU-MFS-ROOT",
"CHERI-PURECAP-QEMU-MFS-ROOT"],
["CHERI-QEMU-MFS-ROOT", "CHERI-NOCAPREVOKE-QEMU-MFS-ROOT", "CHERI-PURECAP-QEMU-MFS-ROOT",
"CHERI-PURECAP-NOCAPREVOKE-QEMU-MFS-ROOT"],
),
],
)
Expand Down

0 comments on commit f6df3fa

Please sign in to comment.