Skip to content

[libc] fix up fileno tests #85660

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 18, 2024
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
1 change: 1 addition & 0 deletions libc/config/gpu/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.stdio.ferror
libc.src.stdio.fseek
libc.src.stdio.fflush
libc.src.stdio.fileno
libc.src.stdio.ftell
libc.src.stdio.clearerr
libc.src.stdio.puts
Expand Down
1 change: 1 addition & 0 deletions libc/config/linux/aarch64/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,7 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.stdio.ferror_unlocked
libc.src.stdio.fgetc
libc.src.stdio.fflush
libc.src.stdio.fileno
libc.src.stdio.fopen
libc.src.stdio.fputc
libc.src.stdio.fputs
Expand Down
1 change: 1 addition & 0 deletions libc/config/linux/riscv/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,7 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.stdio.fgetc_unlocked
libc.src.stdio.fgets
libc.src.stdio.fflush
libc.src.stdio.fileno
libc.src.stdio.fopen
libc.src.stdio.fputc
libc.src.stdio.fputs
Expand Down
1 change: 1 addition & 0 deletions libc/test/src/stdio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ add_libc_test(
libc.src.stdio.feof
libc.src.stdio.ferror
libc.src.stdio.fflush
libc.src.stdio.fileno
libc.src.stdio.fopen
libc.src.stdio.fputs
libc.src.stdio.fread
Expand Down
1 change: 1 addition & 0 deletions libc/test/src/stdio/fileop_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "src/stdio/feof.h"
#include "src/stdio/ferror.h"
#include "src/stdio/fflush.h"
#include "src/stdio/fileno.h"
#include "src/stdio/fopen.h"
#include "src/stdio/fputs.h"
#include "src/stdio/fread.h"
Expand Down