summaryrefslogtreecommitdiff
path: root/libc/test/src/stdio/vfscanf_test.cpp
AgeCommit message (Collapse)Author
2025-07-21[libc][stdio] Separate temporary files for unit test and hermetic test in ↵lntue
stdio test suite. (#149740)
2024-10-01[libc][stdio] Use proxy headers of stdio.h in src and test folders. (#110067)lntue
https://github.com/llvm/llvm-project/issues/60481
2024-08-26[libc] Fix file collision causing test flake (#106119)Michael Jones
In patch #105293 tests for vfscanf were added, meant to be identical to the fscanf tests. Unfortunately, the author forgot to rename the target file causing an occasional test flake where one test writes to the file while the other is trying to read it. This patch fixes the issue by renaming the target test file for the vfscanf test.
2024-08-26[libc] Implement 'vfscanf' and 'vscanf' (#105293)Joseph Huber
Summary: These are simply forwarding the vlist to the existing helper.