Changeset 88e7dc5 in mainline


Ignore:
Timestamp:
2019-02-18T17:02:54Z (5 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bae2a05f
Parents:
fc9167f
git-author:
Matthieu Riolo <matthieu.riolo@…> (2019-01-12 11:32:10)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-18 17:02:54)
Message:

Add pcut tests

Adds tests for cap, gsort, ieee_double, double_to_str,
getopt, uuid, and imath.

Location:
uspace/lib/c
Files:
7 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/Makefile

    rfc9167f r88e7dc5  
    191191        test/adt/circ_buf.c \
    192192        test/adt/odict.c \
     193        test/cap.c \
    193194        test/casting.c \
     195        test/double_to_str.c \
    194196        test/fibril/timer.c \
     197        test/getopt.c \
     198        test/gsort.c \
     199        test/ieee_double.c \
     200        test/imath.c \
     201        test/inttypes.c \
     202        test/io/table.c \
    195203        test/main.c \
    196204        test/mem.c \
    197         test/inttypes.c \
    198         test/io/table.c \
    199         test/stdio/scanf.c \
    200205        test/perf.c \
    201206        test/perm.c \
    202207        test/qsort.c \
    203208        test/sprintf.c \
     209        test/stdio/scanf.c \
    204210        test/stdio.c \
    205211        test/stdlib.c \
    206212        test/str.c \
    207         test/string.c
     213        test/string.c \
     214        test/uuid.c
    208215
    209216include $(USPACE_PREFIX)/Makefile.common
  • uspace/lib/c/test/main.c

    rfc9167f r88e7dc5  
    3232PCUT_INIT;
    3333
     34PCUT_IMPORT(cap);
    3435PCUT_IMPORT(casting);
    3536PCUT_IMPORT(circ_buf);
     37PCUT_IMPORT(double_to_str);
    3638PCUT_IMPORT(fibril_timer);
     39PCUT_IMPORT(getopt);
     40PCUT_IMPORT(gsort);
     41PCUT_IMPORT(ieee_double);
     42PCUT_IMPORT(imath);
    3743PCUT_IMPORT(inttypes);
    3844PCUT_IMPORT(mem);
     
    4854PCUT_IMPORT(string);
    4955PCUT_IMPORT(table);
     56PCUT_IMPORT(uuid);
    5057
    5158PCUT_MAIN();
Note: See TracChangeset for help on using the changeset viewer.