Add the corpus tests.

This commit is contained in:
David Given
2023-10-27 20:43:46 +02:00
parent 6038a11671
commit 5af0b68e06
6 changed files with 155 additions and 62 deletions

View File

@@ -1,9 +1,3 @@
from build.c import clibrary
clibrary(
name="emu",
srcs=["./fnmatch.c"],
hdrs={
"fnmatch.h": "./fnmatch.h"
}
)
clibrary(name="emu", srcs=["./fnmatch.c"], hdrs={"fnmatch.h": "./fnmatch.h"})

View File

@@ -60,7 +60,7 @@ else:
clibrary(
name="libusbp",
srcs=srcs,
cflags =["-Idep/libusbp/include", "-Idep/libusbp/src"],
cflags=["-Idep/libusbp/include", "-Idep/libusbp/src"],
ldflags=ldflags,
deps=deps,
hdrs={