* Yet another test, this time for setting active partition --- tests/expected/fdisk/doslabel | 2 ++ tests/ts/fdisk/doslabel | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletions(-) diff --git a/tests/expected/fdisk/doslabel b/tests/expected/fdisk/doslabel index 6f76360..9f11f4e 100644 --- a/tests/expected/fdisk/doslabel +++ b/tests/expected/fdisk/doslabel @@ -6,6 +6,8 @@ Create primary partition ae4f9b12f4a768849f72ea36938c30c7 doslabel.img Set partition type 4a5dba818f9962a82a086d8b99b89a17 doslabel.img +Set primary partition active +c30e9c761b71cf95c67e758b93706ac5 doslabel.img Re-create primary partition ae4f9b12f4a768849f72ea36938c30c7 doslabel.img Create extended partition diff --git a/tests/ts/fdisk/doslabel b/tests/ts/fdisk/doslabel index 5aba492..fb13430 100755 --- a/tests/ts/fdisk/doslabel +++ b/tests/ts/fdisk/doslabel @@ -26,6 +26,7 @@ FDISK_CMD_INIT="x\nc\n1024\ni\n0x1\nr\n" FDISK_CMD_CREATE_DOSLABEL="o\n" #create dos label FDISK_CMD_CREATE_PRIMARY="n\np\n1\n\n+1M\n" # create primary partition 1 of size 1MB FDISK_CMD_CHANGE_PARTTYPE="t\nbf\n" # change partition type to "bf - solaris", this requires that there is only one partition to change +FDISK_CMD_SET_ACTIVE="a\n1\n" # set first partition active FDISK_CMD_CREATE_EXTENDED="n\ne\n2\n\n+10\n" # create extended partition 2 of size 11 cylinders FDISK_CMD_CREATE_LOGICAL="n\nl\n\n+1\n" # create next logical partition of size 2 cyl FDISK_CMD_DELETE_LOGICALS="d\n6\nd\n5\nd\n6\d5\n" # delete middle, head, tail, last partitions @@ -55,6 +56,11 @@ echo -e "${FDISK_CMD_INIT}${FDISK_CMD_CHANGE_PARTTYPE}${FDISK_CMD_WRITE_CLOSE}" $TS_CMD_FDISK ${TEST_IMAGE_NAME} &> /dev/null ts_image_md5sum 2>&1 >> $TS_OUTPUT +ts_log "Set primary partition active" +echo -e "${FDISK_CMD_INIT}${FDISK_CMD_SET_ACTIVE}${FDISK_CMD_WRITE_CLOSE}" | \ + $TS_CMD_FDISK ${TEST_IMAGE_NAME} &> /dev/null +ts_image_md5sum 2>&1 >> $TS_OUTPUT + ts_log "Re-create primary partition" echo -e "${FDISK_CMD_INIT}d\n${FDISK_CMD_CREATE_PRIMARY}${FDISK_CMD_WRITE_CLOSE}" | \ $TS_CMD_FDISK ${TEST_IMAGE_NAME} &> /dev/null -- 1.6.3.1 -- To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html