25 lines
403 B
C
25 lines
403 B
C
/*
|
|
* Test regular printstrn/umoven.
|
|
*
|
|
* Copyright (c) 2017-2018 Dmitry V. Levin <ldv@altlinux.org>
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "tests.h"
|
|
#include "test_ucopy.h"
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
if (!test_process_vm_readv())
|
|
perror_msg_and_skip("process_vm_readv");
|
|
|
|
test_printstrn(4096);
|
|
|
|
puts("+++ exited with 0 +++");
|
|
return 0;
|
|
}
|