Dmitry V. Levin
c6782f144a
strace test suite is now provided under the terms of the GNU General Public License version 2 or later, see tests/COPYING for more details.
29 lines
560 B
C
29 lines
560 B
C
/*
|
|
* Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
|
|
* Copyright (c) 2016-2018 The strace developers.
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "tests.h"
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
const unsigned int size = PATH_MAX - 1;
|
|
const char *p = tail_alloc(size);
|
|
const char *const efault = p + size;
|
|
|
|
for (; p <= efault; ++p) {
|
|
int rc = chdir(p);
|
|
printf("chdir(%p) = %d %s (%m)\n", p, rc, errno2name());
|
|
}
|
|
|
|
puts("+++ exited with 0 +++");
|
|
return 0;
|
|
}
|