1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/*
* 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;
}
|