from waftools.pebble_test import clar


def build(ctx):
    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob="test_circular_buffer.c")

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob="test_list.c")

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob="test_math.c",
         test_libs=['m'])

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob="test_string.c")

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob="test_math_fixed.c")

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob='test_crc32.c')

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob='test_uuid.c')

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob='test_circular_cache.c')

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob='test_keyed_circular_cache.c')

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob='test_struct.c')

    clar(ctx,
         sources_ant_glob=None,
         test_sources_ant_glob='test_sort.c')

# vim:filetype=python