mirror of
https://github.com/google/pebble.git
synced 2025-03-15 08:41:21 +00:00
50 lines
1.1 KiB
Python
50 lines
1.1 KiB
Python
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
|