Files
Red Bear OS 1b3e94a20d Red Bear OS relibc baseline
From release 0.1.0 pre-patched archive.
This includes all Red Bear modifications previously maintained
as patches in local/patches/relibc/.
2026-06-27 09:19:26 +03:00

28 lines
634 B
C

#include <limits.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include "test_helpers.h"
int main(void) {
char cwd[PATH_MAX] = { 0 };
char *cwd_result = NULL;
cwd_result = getcwd(cwd, PATH_MAX);
ERROR_IF(getcwd, cwd_result, == NULL);
UNEXP_IF(getcwd, cwd_result, != cwd);
printf("getcwd before chdir: %s\n", cwd);
int status = chdir("..");
ERROR_IF(chdir, status, == -1);
UNEXP_IF(chdir, status, != 0);
cwd_result = getcwd(cwd, PATH_MAX);
ERROR_IF(getcwd, cwd_result, == NULL);
UNEXP_IF(getcwd, cwd_result, != cwd);
printf("getcwd after chdir: %s\n", cwd);
}