Import of the watch repository from Pebble

This commit is contained in:
Matthieu Jeanson 2024-12-12 16:43:03 -08:00 committed by Katharine Berry
commit 3b92768480
10334 changed files with 2564465 additions and 0 deletions

50
tests/libutil/wscript Normal file
View file

@ -0,0 +1,50 @@
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