diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-10-20 15:22:21 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-10-20 15:22:21 +0200 |
commit | 1d8b9e17ea13630aec475484da09ebba0366f7c8 (patch) | |
tree | 0c801f68561bfb0930a4ade80d7ca3a7940887ab /tests/nap.h | |
parent | 84e26c587987e8484d55db4165f188b40c09e94b (diff) | |
parent | 630f99f29bd31a76d8d24da2975a045452c763ef (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'tests/nap.h')
-rw-r--r-- | tests/nap.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/tests/nap.h b/tests/nap.h index cf7d998b..1b9ae592 100644 --- a/tests/nap.h +++ b/tests/nap.h @@ -20,9 +20,11 @@ # define GLTEST_NAP_H # include <limits.h> - # include <stdckdint.h> +# include "concat-filename.h" +# include "xgetcwd.h" + /* Avoid a conflict with a function called nap() on UnixWare. */ # if defined _SCO_DS || (defined __SCO_VERSION__ || defined __sysv5__) /* OpenServer, UnixWare */ # include <unistd.h> @@ -33,6 +35,9 @@ /* Name of the witness file. */ #define TEMPFILE BASE "nap.tmp" +/* Absolute name of the witness file. */ +static char *nap_file /* = NULL */; + /* File descriptor used for the witness file. */ static int nap_fd = -1; @@ -75,7 +80,7 @@ nap_get_stat (struct stat *st, int do_write) is closed. See <https://docs.microsoft.com/en-us/windows/desktop/api/fileapi/nf-fileapi-writefile> */ close (nap_fd); - nap_fd = open (TEMPFILE, O_RDWR, 0600); + nap_fd = open (nap_file, O_RDWR, 0600); ASSERT (nap_fd != -1); lseek (nap_fd, 0, SEEK_END); #endif @@ -108,7 +113,7 @@ clear_temp_file (void) if (0 <= nap_fd) { ASSERT (close (nap_fd) != -1); - ASSERT (unlink (TEMPFILE) != -1); + ASSERT (unlink (nap_file) != -1); } } @@ -127,8 +132,9 @@ nap (void) if (-1 == nap_fd) { + nap_file = xconcatenated_filename (xgetcwd (), TEMPFILE, NULL); atexit (clear_temp_file); - ASSERT ((nap_fd = creat (TEMPFILE, 0600)) != -1); + ASSERT ((nap_fd = creat (nap_file, 0600)) != -1); nap_get_stat (&old_st, 0); } else |