tests: Replace returns with exits in the main functions

This will allow us to redefine the exit function.

For example:
```
#define exit(code) { \
    fprintf(stderr, "%s:%d: exit(%s) in function ‘%s’\n",
        __FILE__, __LINE__, #code, __func__); \
    _exit(code); \
}
```
This commit is contained in:
Tibor Nagy
2019-02-21 11:51:58 +01:00
parent f19e029468
commit d1a424c002
34 changed files with 76 additions and 76 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ int main(void) {
char* path = realpath("stdlib/realpath.c", NULL);
if (!path) {
perror("realpath");
return EXIT_FAILURE;
exit(EXIT_FAILURE);
}
puts(path);
@@ -21,7 +21,7 @@ int main(void) {
if (!path) {
perror("realpath");
free(path);
return EXIT_FAILURE;
exit(EXIT_FAILURE);
}
puts(path);