- f9b1313 Suppress -Wformat warning by Yi Kong · 3 years, 4 months ago
- 4ef83d6 Revert "strerror: incl enum name" by Steven Moreland · 3 years, 9 months ago
- c3060de strerror: incl enum name by Steven Moreland · 3 years, 10 months ago
- 4c5595c Replace local MUSL define with global ANDROID_HOST_MUSL by Colin Cross · 4 years ago
- 14d1507 Fix some clang-format issues by Colin Cross · 4 years ago
- 7da2034 Build bionic unit tests for musl by Colin Cross · 4 years ago
- 141b917 Switch to libbase SilentDeathTest. by Elliott Hughes · 4 years, 3 months ago
- e657eb4 Fix some bionic death tests. by Elliott Hughes · 4 years, 5 months ago
- f9cfecf Fix freopen() where the path is null. by Elliott Hughes · 4 years, 5 months ago
- 439ebbd Simplify and improve tempnam() and tmpnam(). by Elliott Hughes · 4 years, 7 months ago
- 7cebf83 Various coverage improvements. by Elliott Hughes · 5 years ago
- cdb4a26 Update upstream OpenBSD gdtoa. by Elliott Hughes · 5 years ago
- 5dc3130 Explicitly test printf %s with nullptr. by Elliott Hughes · 6 years ago
- 05b675e Add renameat2. by Elliott Hughes · 6 years ago
- 31c7309 Add SEEK_DATA and SEEK_HOLE constants. by Elliott Hughes · 6 years ago
- c485cdb Revert fwalk/sfp locking to fix concurrent reads by Ryan Prichard · 6 years ago
- bcaa454 bionic tests: use GTEST_SKIP. by Elliott Hughes · 6 years ago
- 288465d Avoid writing to a zero-capacity buffer. by Elliott Hughes · 6 years ago
- c2edae3 Fix cert-dcl16-c clang-tidy warnings in tests. by Chih-Hung Hsieh · 7 years ago
- 68a3bcc bionic tests: switch to using android-base/file.h for TemporaryFile by Mark Salyzyn · 7 years ago
- f340a56 Use strerror_r(3) for the printf family %m. by Elliott Hughes · 7 years ago
- 654cd83 Add the %m GNU extension to printf/wprintf. by Elliott Hughes · 7 years ago
- 2c4ec7e Fix uses of readlink in tests. by Christopher Ferris · 7 years ago
- f1a3838 Test that /dev/stdin, /dev/stdout, and /dev/stderr are all present. by Elliott Hughes · 7 years ago
- 32bc0fc Modernize codebase by replacing NULL with nullptr by Yi Kong · 7 years ago
- f6e5b58 Introduce api to track fd ownership in libc. by Josh Gao · 7 years ago
- 468efc8 Reimplement popen(3)/pclose(3). by Elliott Hughes · 7 years ago
- 41398d0 Call __fortify_fatal if printf sees %n. by Elliott Hughes · 7 years ago
- 38e4aef Support %mc/%ms/%m[ in sscanf. by Elliott Hughes · 7 years ago
- a7f1294 A few more trivial tests. by Elliott Hughes · 8 years ago
- bf9cb9e More scanf cleanup. by Elliott Hughes · 8 years ago
- 0d3ba1f Add sscanf %[ tests and fix the bug that fell out. by Elliott Hughes · 8 years ago
- bf54986 Allow 32-bit fseeko/fseeko64 SEEK_CUR/SEEK_SET to exceed 2 GiB by Ryan Prichard · 8 years ago
- 618303c More printf de-duplication. by Elliott Hughes · 8 years ago
- 2f9c8ce Start de-duplicating the regular and wide printf implementations. by Elliott Hughes · 8 years ago
- 37ad959 More missing _unlocked <stdio.h> functions. by Elliott Hughes · 8 years ago
- 9601f16 Expand swprintf tests. by Dan Albert · 8 years ago
- b15feb7 Clean up some <stdio.h> constants. by Elliott Hughes · 8 years ago
- 33a8cb1 Use O_APPEND for stdio append mode. by Elliott Hughes · 8 years ago
- 3a4c454 Replace fmemopen. by Elliott Hughes · 8 years ago
- 2f06e10 Improve fmemopen tests. by Josh Gao · 9 years ago
- b36efa4 Fix instances of '#if __LP64__'. by Josh Gao · 9 years ago
- 7f0849f Fix sscanf/wcstod parsing of NaNs. by Elliott Hughes · 9 years ago
- fb3873d Fortify vsnprintf in more cases. by Elliott Hughes · 9 years ago
- d1f25a7 Reimplement remove(3) without the lstat(2). by Elliott Hughes · 9 years ago
- 70715da More stdio one-liners. by Elliott Hughes · 9 years ago
- 20788ae Add ctermid. by Elliott Hughes · 9 years ago
- 8200e55 Add a test for a possible overflow in *printf. by Elliott Hughes · 9 years ago
- 43f7c87 Add a test for snprintf on a PTHREAD_STACK_MIN-sized stack. by Elliott Hughes · 9 years ago
- f226ee5 Add fopen64/freopen64/tmpfile64 aliases. by Elliott Hughes · 9 years ago
- e4fa6e9 Expose ftello64. by Elliott Hughes · 9 years ago
- 955426e Fix a sign extension bug in stdio. by Elliott Hughes · 9 years ago
- 03e65eb Implement funopen64. by Elliott Hughes · 9 years ago
- 9677fab Support _FILE_OFFSET_BITS=64 for most of <stdio.h>. by Elliott Hughes · 9 years ago
- 71288cb Add another stdio test. by Elliott Hughes · 9 years ago
- 2704bd1 Simplify fseek/ftell. by Elliott Hughes · 9 years ago
- 923f165 Make FILE*s less usable after fclose(3). by Elliott Hughes · 9 years ago
- 13f26a7 Add method to run fortified versions of funcs. by Christopher Ferris · 10 years ago
- 8ab433d Fix stdio read after EOF behavior. by Elliott Hughes · 10 years ago
- 694fd2d Add a test for getdelim(3) on a directory. by Elliott Hughes · 10 years ago
- cc9ca10 Fix fread returning bad data. by Christopher Ferris · 10 years ago
- e6bb5a2 Fix optimized fread. by Elliott Hughes · 10 years ago
- 0ed7e08 Fix the stdio.fread_EOF test. by Elliott Hughes · 10 years ago
- bcb378d Fix fread_EOF test name. by Elliott Hughes · 10 years ago
- 75b9938 Optimized fread. by Elliott Hughes · 10 years ago
- 1b18aff Fix nan output in the printf family. by Elliott Hughes · 11 years ago
- 20841a1 Avoid pathological behavior in OpenBSD's fread. by Elliott Hughes · 11 years ago
- 5ca4a9e implement missing seekdir and telldir by Yabin Cui · 11 years ago
- 6a03abc Ensure we initialize stdin/stdout/stderr's recursive mutexes. by Elliott Hughes · 11 years ago
- 31165ed CLOEXEC support in fdopen, freopen, and mkostemp/mkostemps. by Elliott Hughes · 11 years ago
- a40fdbd call uselocale() before freelocale() to make sure that g_local_key has a valid locale. by Wally Yau · 11 years ago
- 6b841db Add POSIX-2008 fmemopen, open_memstream, and open_wmemstream. by Elliott Hughes · 11 years ago
- 1aec7c1 Proper MB_CUR_MAX. by Dan Albert · 11 years ago
- 8e613cf Remove declaration for putw(3)/getw(3). by Dan Albert · 11 years ago
- 69f05d2 Fix the printf family for non-ASCII. by Elliott Hughes · 11 years ago
- 9e01ea6 Fix dprintf test. by Christopher Ferris · 11 years ago
- 6afb2a9 Add dprintf test by Calin Juravle · 11 years ago
- 9b95ea9 Document a known test issue in stdio_test.cpp. by Calin Juravle · 11 years ago
- c9244bd Add tests for fprintf behavior when the underlying fd is bad. by Elliott Hughes · 11 years ago
- e77f38f Add a unit test for already-fixed printf -0.0 formatting. by Elliott Hughes · 11 years ago
- 063525c Consistently use #if defined(__BIONIC__) in tests. by Elliott Hughes · 11 years ago
- 03e4ebe Add fpos_t tests. by Calin Juravle · 11 years ago
- 20f8aec Fix use-after-free errors in stdio_test. by Elliott Hughes · 11 years ago
- ad53498 Merge "Disable %n in printf and vfwprintf." by Elliott Hughes · 11 years ago
- e2341d0 Disable %n in printf and vfwprintf. by Elliott Hughes · 11 years ago
- 53b2438 Switch to current upstream OpenBSD wsetup.c. by Elliott Hughes · 11 years ago
- 0549371 Upgrade to current vfprintf. by Elliott Hughes · 11 years ago
- 4bd97ce Switch to gdtoa. by Elliott Hughes · 11 years ago
- 7823f32 Extra tests for printf of NaN and Inf. by Elliott Hughes · 11 years ago
- edd7c2e Fix the printf issue for 64 bits. The following case: by Alexander Ivchenko · 11 years ago
- f171b34 Use the float/double assert macros. by Christopher Ferris · 11 years ago
- 603332f Upgrade to current upstream scanf implementation. by Elliott Hughes · 11 years ago
- f04935c Make sure that the same tests are on all platforms. by Christopher Ferris · 12 years ago
- 6ad8f76 Don't abort in stdio.getdelim_invalid and stdio.getline_invalid. by Elliott Hughes · 12 years ago
- cbd85b9 Modify tests for another glibc difference. by Christopher Ferris · 12 years ago
- 1361313 Fix up failing glibc tests. by Christopher Ferris · 12 years ago
- 925753a Fix some test assumptions that are wrong for __LP64__. by Elliott Hughes · 12 years ago
- 6c7b3cb Fix clang warnings in bionic. by Stephen Hines · 12 years ago
- 7248a2d Add a unit test for %n. by Elliott Hughes · 12 years ago
- 1d13c64 Fix %hhd formats in the printf family. by Elliott Hughes · 12 years ago