diff options
author | Arvin Schnell <aschnell@suse.com> | 2022-05-11 14:02:21 +0000 |
---|---|---|
committer | Brian C. Lane <bcl@redhat.com> | 2022-05-13 10:32:06 -0700 |
commit | 61b3a9733c0e0a79ccc43096642d378c8706add6 (patch) | |
tree | 48d20b665ea5ea3f8a85d550046902f56a20404a /tests/t3310-flags.sh | |
parent | cec533a00a2cd0b64a7a0f5debc26554f6025831 (diff) | |
download | parted-61b3a9733c0e0a79ccc43096642d378c8706add6.tar.gz |
parted: add type command
Include the partition type-id and type-uuid in the JSON
output. Also add the the command 'type' to set them. Remove
redundant flags from DosPartitionData and use only the system
variable.
Signed-off-by: Brian C. Lane <bcl@redhat.com>
Diffstat (limited to 'tests/t3310-flags.sh')
-rw-r--r-- | tests/t3310-flags.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/t3310-flags.sh b/tests/t3310-flags.sh index f2001c5..b35d443 100644 --- a/tests/t3310-flags.sh +++ b/tests/t3310-flags.sh @@ -91,6 +91,10 @@ for table_type in aix amiga atari bsd dvh gpt mac msdos pc98 sun loop; do # test to fail. flags=`echo "$flags" | egrep -v 'lvm|raid'` ;; + msdos) # FIXME: Exclude flags that can only be set in combination + # with certain other flags. + flags=`echo "$flags" | egrep -v 'hidden|lba'` + ;; esac for mode in on_only on_and_off ; do |