Move common test functions to separate module
This resolves warnings for missing function prototypes.
This commit is contained in:
parent
71230a08e4
commit
548497a398
34
Makefile
34
Makefile
@ -43,10 +43,11 @@ includedir=$(prefix)/include
|
|||||||
all: libutf8proc.a libutf8proc.$(SHLIB_EXT)
|
all: libutf8proc.a libutf8proc.$(SHLIB_EXT)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f utf8proc.o libutf8proc.a libutf8proc.$(SHLIB_VERS_EXT) libutf8proc.$(SHLIB_EXT) test/normtest test/graphemetest test/printproperty test/charwidth test/valid test/iterate
|
rm -f utf8proc.o libutf8proc.a libutf8proc.$(SHLIB_VERS_EXT) libutf8proc.$(SHLIB_EXT)
|
||||||
ifneq ($(OS),Darwin)
|
ifneq ($(OS),Darwin)
|
||||||
rm -f libutf8proc.so.$(MAJOR)
|
rm -f libutf8proc.so.$(MAJOR)
|
||||||
endif
|
endif
|
||||||
|
rm -f test/tests.o test/normtest test/graphemetest test/printproperty test/charwidth test/valid test/iterate test/case
|
||||||
$(MAKE) -C bench clean
|
$(MAKE) -C bench clean
|
||||||
$(MAKE) -C data clean
|
$(MAKE) -C data clean
|
||||||
|
|
||||||
@ -100,26 +101,29 @@ data/NormalizationTest.txt:
|
|||||||
data/GraphemeBreakTest.txt:
|
data/GraphemeBreakTest.txt:
|
||||||
$(MAKE) -C data GraphemeBreakTest.txt
|
$(MAKE) -C data GraphemeBreakTest.txt
|
||||||
|
|
||||||
test/normtest: test/normtest.c utf8proc.o utf8proc.h test/tests.h
|
test/tests.o: test/tests.c test/tests.h utf8proc.h
|
||||||
$(CC) $(UCFLAGS) test/normtest.c utf8proc.o -o $@
|
$(CC) $(UCFLAGS) -c -o test/tests.o test/tests.c
|
||||||
|
|
||||||
test/graphemetest: test/graphemetest.c utf8proc.o utf8proc.h test/tests.h
|
test/normtest: test/normtest.c test/tests.o utf8proc.o utf8proc.h test/tests.h
|
||||||
$(CC) $(UCFLAGS) test/graphemetest.c utf8proc.o -o $@
|
$(CC) $(UCFLAGS) test/normtest.c test/tests.o utf8proc.o -o $@
|
||||||
|
|
||||||
test/printproperty: test/printproperty.c utf8proc.o utf8proc.h test/tests.h
|
test/graphemetest: test/graphemetest.c test/tests.o utf8proc.o utf8proc.h test/tests.h
|
||||||
$(CC) $(UCFLAGS) test/printproperty.c utf8proc.o -o $@
|
$(CC) $(UCFLAGS) test/graphemetest.c test/tests.o utf8proc.o -o $@
|
||||||
|
|
||||||
test/charwidth: test/charwidth.c utf8proc.o utf8proc.h test/tests.h
|
test/printproperty: test/printproperty.c test/tests.o utf8proc.o utf8proc.h test/tests.h
|
||||||
$(CC) $(UCFLAGS) test/charwidth.c utf8proc.o -o $@
|
$(CC) $(UCFLAGS) test/printproperty.c test/tests.o utf8proc.o -o $@
|
||||||
|
|
||||||
test/valid: test/valid.c utf8proc.o utf8proc.h test/tests.h
|
test/charwidth: test/charwidth.c test/tests.o utf8proc.o utf8proc.h test/tests.h
|
||||||
$(CC) $(UCFLAGS) test/valid.c utf8proc.o -o $@
|
$(CC) $(UCFLAGS) test/charwidth.c test/tests.o utf8proc.o -o $@
|
||||||
|
|
||||||
test/iterate: test/iterate.c utf8proc.o utf8proc.h test/tests.h
|
test/valid: test/valid.c test/tests.o utf8proc.o utf8proc.h test/tests.h
|
||||||
$(CC) $(UCFLAGS) test/iterate.c utf8proc.o -o $@
|
$(CC) $(UCFLAGS) test/valid.c test/tests.o utf8proc.o -o $@
|
||||||
|
|
||||||
test/case: test/case.c utf8proc.o utf8proc.h test/tests.h
|
test/iterate: test/iterate.c test/tests.o utf8proc.o utf8proc.h test/tests.h
|
||||||
$(CC) $(UCFLAGS) test/case.c utf8proc.o -o $@
|
$(CC) $(UCFLAGS) test/iterate.c test/tests.o utf8proc.o -o $@
|
||||||
|
|
||||||
|
test/case: test/case.c test/tests.o utf8proc.o utf8proc.h test/tests.h
|
||||||
|
$(CC) $(UCFLAGS) test/case.c test/tests.o utf8proc.o -o $@
|
||||||
|
|
||||||
check: test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/case test/charwidth test/valid test/iterate bench/bench.c bench/util.c bench/util.h utf8proc.o
|
check: test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/case test/charwidth test/valid test/iterate bench/bench.c bench/util.c bench/util.h utf8proc.o
|
||||||
$(MAKE) -C bench
|
$(MAKE) -C bench
|
||||||
|
|||||||
46
test/tests.c
Normal file
46
test/tests.c
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
/* Common functions for our test programs. */
|
||||||
|
|
||||||
|
#include "tests.h"
|
||||||
|
|
||||||
|
size_t lineno = 0;
|
||||||
|
|
||||||
|
void check(int cond, const char *format, ...)
|
||||||
|
{
|
||||||
|
if (!cond) {
|
||||||
|
va_list args;
|
||||||
|
fprintf(stderr, "line %zd: ", lineno);
|
||||||
|
va_start(args, format);
|
||||||
|
vfprintf(stderr, format, args);
|
||||||
|
va_end(args);
|
||||||
|
fprintf(stderr, "\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t skipspaces(const char *buf, size_t i)
|
||||||
|
{
|
||||||
|
while (isspace(buf[i])) ++i;
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* if buf points to a sequence of codepoints encoded as hexadecimal strings,
|
||||||
|
separated by whitespace, and terminated by any character not in
|
||||||
|
[0-9a-fA-F] or whitespace, then stores the corresponding utf8 string
|
||||||
|
in dest, returning the number of bytes read from buf */
|
||||||
|
size_t encode(char *dest, const char *buf)
|
||||||
|
{
|
||||||
|
size_t i = 0, j, d = 0;
|
||||||
|
for (;;) {
|
||||||
|
int c;
|
||||||
|
i = skipspaces(buf, i);
|
||||||
|
for (j=i; buf[j] && strchr("0123456789abcdef", tolower(buf[j])); ++j)
|
||||||
|
; /* find end of hex input */
|
||||||
|
if (j == i) { /* no codepoint found */
|
||||||
|
dest[d] = 0; /* NUL-terminate destination string */
|
||||||
|
return i + 1;
|
||||||
|
}
|
||||||
|
check(sscanf(buf + i, "%x", (unsigned int *)&c) == 1, "invalid hex input %s", buf+i);
|
||||||
|
i = j; /* skip to char after hex input */
|
||||||
|
d += utf8proc_encode_char(c, (utf8proc_uint8_t *) (dest + d));
|
||||||
|
}
|
||||||
|
}
|
||||||
46
test/tests.h
46
test/tests.h
@ -8,46 +8,8 @@
|
|||||||
|
|
||||||
#include "../utf8proc.h"
|
#include "../utf8proc.h"
|
||||||
|
|
||||||
size_t lineno = 0;
|
extern size_t lineno;
|
||||||
|
|
||||||
void check(int cond, const char *format, ...)
|
|
||||||
{
|
|
||||||
if (!cond) {
|
|
||||||
va_list args;
|
|
||||||
fprintf(stderr, "line %zd: ", lineno);
|
|
||||||
va_start(args, format);
|
|
||||||
vfprintf(stderr, format, args);
|
|
||||||
va_end(args);
|
|
||||||
fprintf(stderr, "\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t skipspaces(const char *buf, size_t i)
|
|
||||||
{
|
|
||||||
while (isspace(buf[i])) ++i;
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* if buf points to a sequence of codepoints encoded as hexadecimal strings,
|
|
||||||
separated by whitespace, and terminated by any character not in
|
|
||||||
[0-9a-fA-F] or whitespace, then stores the corresponding utf8 string
|
|
||||||
in dest, returning the number of bytes read from buf */
|
|
||||||
size_t encode(char *dest, const char *buf)
|
|
||||||
{
|
|
||||||
size_t i = 0, j, d = 0;
|
|
||||||
for (;;) {
|
|
||||||
int c;
|
|
||||||
i = skipspaces(buf, i);
|
|
||||||
for (j=i; buf[j] && strchr("0123456789abcdef", tolower(buf[j])); ++j)
|
|
||||||
; /* find end of hex input */
|
|
||||||
if (j == i) { /* no codepoint found */
|
|
||||||
dest[d] = 0; /* NUL-terminate destination string */
|
|
||||||
return i + 1;
|
|
||||||
}
|
|
||||||
check(sscanf(buf + i, "%x", (unsigned int *)&c) == 1, "invalid hex input %s", buf+i);
|
|
||||||
i = j; /* skip to char after hex input */
|
|
||||||
d += utf8proc_encode_char(c, (utf8proc_uint8_t *) (dest + d));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
void check(int cond, const char *format, ...);
|
||||||
|
size_t skipspaces(const char *buf, size_t i);
|
||||||
|
size_t encode(char *dest, const char *buf);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user