Changeset 2d78d88 in mainline for uspace/lib/label/test/label.c


Ignore:
Timestamp:
2018-07-25T17:04:03Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
efa3136
Parents:
bec18a9
Message:

Modifying mount point for a partition.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/label/test/label.c

    rbec18a9 r2d78d88  
    357357        PCUT_ASSERT_INT_EQUALS(lt_mbr, linfo.ltype);
    358358        PCUT_ASSERT_INT_EQUALS(lf_ext_supp | lf_can_create_pri |
    359             lf_can_create_ext | lf_can_delete_part, linfo.flags);
     359            lf_can_create_ext | lf_can_delete_part | lf_can_modify_part,
     360            linfo.flags);
    360361
    361362        part = label_part_first(label);
     
    443444        PCUT_ASSERT_INT_EQUALS(lt_mbr, linfo.ltype);
    444445        PCUT_ASSERT_INT_EQUALS(lf_ext_supp | lf_can_create_pri |
    445             lf_can_create_log | lf_can_delete_part, linfo.flags);
     446            lf_can_create_log | lf_can_delete_part | lf_can_modify_part,
     447            linfo.flags);
    446448
    447449        epart = label_part_first(label);
     
    586588        PCUT_ASSERT_INT_EQUALS(lt_gpt, linfo.ltype);
    587589        PCUT_ASSERT_INT_EQUALS(lf_can_create_pri | lf_ptype_uuid |
    588             lf_can_delete_part, linfo.flags);
     590            lf_can_delete_part | lf_can_modify_part, linfo.flags);
    589591
    590592        part = label_part_first(label);
Note: See TracChangeset for help on using the changeset viewer.