mirror of
https://github.com/google/pebble.git
synced 2025-03-16 01:01:20 +00:00
51 lines
1.1 KiB
Text
51 lines
1.1 KiB
Text
|
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
|