Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/llvm-project
Submodule llvm-project updated 283 files
2 changes: 1 addition & 1 deletion src/wasi-libc
Submodule wasi-libc updated 51 files
+3 −7 .github/workflows/main.yml
+63 −136 Makefile
+86 −0 scripts/install-include-headers.sh
+0 −3 test/.gitignore
+130 −125 test/Makefile
+81 −2 test/README.md
+50 −0 test/scripts/add-flags.py
+24 −0 test/scripts/failed-tests.sh
+93 −0 test/scripts/filter.py
+21 −0 test/scripts/generate-stubs.sh
+20 −0 test/scripts/run-test.sh
+0 −35 test/smoke/smoke.mk
+3 −0 test/src/libc-test/functional/argv.c
+3 −0 test/src/libc-test/functional/basename.c
+3 −0 test/src/libc-test/functional/clocale_mbfuncs.c
+3 −0 test/src/libc-test/functional/clock_gettime.c
+3 −0 test/src/libc-test/functional/crypt.c
+3 −0 test/src/libc-test/functional/dirname.c
+3 −0 test/src/libc-test/functional/env.c
+3 −0 test/src/libc-test/functional/fnmatch.c
+3 −0 test/src/libc-test/functional/iconv_open.c
+3 −0 test/src/libc-test/functional/mbc.c
+3 −0 test/src/libc-test/functional/memstream.c
+3 −0 test/src/libc-test/functional/qsort.c
+3 −0 test/src/libc-test/functional/random.c
+3 −0 test/src/libc-test/functional/search_hsearch.c
+3 −0 test/src/libc-test/functional/search_insque.c
+3 −0 test/src/libc-test/functional/search_lsearch.c
+3 −0 test/src/libc-test/functional/search_tsearch.c
+3 −0 test/src/libc-test/functional/snprintf.c
+3 −0 test/src/libc-test/functional/sscanf.c
+3 −0 test/src/libc-test/functional/strftime.c
+3 −0 test/src/libc-test/functional/string.c
+3 −0 test/src/libc-test/functional/string_memcpy.c
+3 −0 test/src/libc-test/functional/string_memmem.c
+3 −0 test/src/libc-test/functional/string_memset.c
+3 −0 test/src/libc-test/functional/string_strchr.c
+3 −0 test/src/libc-test/functional/string_strcspn.c
+3 −0 test/src/libc-test/functional/string_strstr.c
+3 −0 test/src/libc-test/functional/strtod.c
+3 −0 test/src/libc-test/functional/strtod_long.c
+3 −0 test/src/libc-test/functional/strtod_simple.c
+3 −0 test/src/libc-test/functional/strtof.c
+3 −0 test/src/libc-test/functional/strtol.c
+3 −0 test/src/libc-test/functional/strtold.c
+3 −0 test/src/libc-test/functional/swprintf.c
+3 −0 test/src/libc-test/functional/tgmath.c
+3 −0 test/src/libc-test/functional/udiv.c
+3 −0 test/src/libc-test/functional/wcsstr.c
+3 −0 test/src/libc-test/functional/wcstol.c
+2 −0 test/src/misc/fts.c
Loading