aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/image.scm
Commit message (Collapse)AuthorAge
* image: Prefer gpt partition table for efi imagesSergey Trofimov2023-07-07
| | | | | | | | | * gnu/system/image.scm (efi-disk-image): Use gpt partition-table-type. (efi32-disk-image): Use gpt partition-table-type. (qcow2-image-type): Use mbr partition-table-type explicitly. * gnu/tests/image.scm: Assert partition table type of efi-disk-image. Signed-off-by: Josselin Poiret <dev@jpoiret.xyz>
* tests: image: New test.Mathieu Othacehe2022-08-30
Add a new image test module to validate the image creation itself. The images structures are validated using guile-parted. Checking the content of those images is out of scope and should be performed in other modules (installation for instance). * gnu/tests/image.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it.