Skip to content

Commit

Permalink
tests: Task.open_pid_maps: Print to stdout
Browse files Browse the repository at this point in the history
    $ ./src/tests/ulpatch_test -f Task.open_pid_maps

Signed-off-by: Rong Tao <[email protected]>
  • Loading branch information
Rtoax committed Aug 6, 2024
1 parent 40e08e1 commit 657081c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/utils/task.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ TEST(Task, open_pid_maps, 0)
{
int fd;
fd = open_pid_maps(getpid());
fprint_pid_maps(stderr, fd);
fprint_pid_maps(stdout, fd);
close(fd);
return 0;
}
Expand Down

0 comments on commit 657081c

Please sign in to comment.