(root)/
strace-6.5/
tests-mx32/
printstrn-umoven.c
       1  /*
       2   * Test regular printstrn/umoven.
       3   *
       4   * Copyright (c) 2017-2021 Dmitry V. Levin <ldv@strace.io>
       5   * All rights reserved.
       6   *
       7   * SPDX-License-Identifier: GPL-2.0-or-later
       8   */
       9  
      10  #include "tests.h"
      11  #include "test_ucopy.h"
      12  #include <stdio.h>
      13  
      14  int
      15  main(void)
      16  {
      17  	if (!test_process_vm_readv())
      18  		perror_msg_and_skip("process_vm_readv");
      19  
      20  	test_printstrn(4096);
      21  
      22  	puts("+++ exited with 0 +++");
      23  	return 0;
      24  }