Changeset 4b54bd9 in mainline for uspace/lib/pcut/tests/xmlreport.c


Ignore:
Timestamp:
2018-09-12T13:23:03Z (6 years ago)
Author:
Vojtech Horky <vojtech.horky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3da0ee4
Parents:
275530a4
Message:

Update PCUT to latest revision

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/pcut/tests/xmlreport.c

    r275530a4 r4b54bd9  
    3333#include "tested.h"
    3434
    35 PCUT_INIT;
     35PCUT_INIT
    3636
    37 PCUT_TEST(zero_exponent)
    38 {
     37PCUT_TEST(zero_exponent) {
    3938        PCUT_ASSERT_INT_EQUALS(1, intpow(2, 0));
    4039}
    4140
    42 PCUT_TEST(one_exponent)
    43 {
     41PCUT_TEST(one_exponent) {
    4442        PCUT_ASSERT_INT_EQUALS(2, intpow(2, 1));
    4543        PCUT_ASSERT_INT_EQUALS(39, intpow(39, 1));
    4644}
    4745
    48 PCUT_TEST(same_strings)
    49 {
     46PCUT_TEST(same_strings) {
    5047        const char *p = "xyz";
    5148        PCUT_ASSERT_STR_EQUALS("xyz", p);
     
    5350}
    5451
    55 PCUT_CUSTOM_MAIN(PCUT_MAIN_SET_XML_REPORT);
     52PCUT_CUSTOM_MAIN(
     53        PCUT_MAIN_SET_XML_REPORT
     54)
Note: See TracChangeset for help on using the changeset viewer.