summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/snippets/clock_gettime_heap.c8
-rw-r--r--test/snippets/clock_gettime_heap.variable1
-rw-r--r--test/snippets/include_headers.h1
3 files changed, 10 insertions, 0 deletions
diff --git a/test/snippets/clock_gettime_heap.c b/test/snippets/clock_gettime_heap.c
new file mode 100644
index 0000000..11ae827
--- /dev/null
+++ b/test/snippets/clock_gettime_heap.c
@@ -0,0 +1,8 @@
+struct timespec *ts = malloc(sizeof(struct timespec));
+clockid_t ckid = CLOCK_REALTIME;
+int ret = clock_gettime(ckid, ts);
+if (ret == 0) {
+ printf("[%s] clock_gettime_heap(CLOCK_REALTIME[%d], ts) -> {%lld, %ld}\n", where, ckid, (long long)ts->tv_sec, ts->tv_nsec);
+ } else {
+ printf("[%s] clock_gettime_heap(CLOCK_REALTIME[%d], ts) returned non-zero (%d), errno = %d (%s)\n", where, ckid, ret, errno, strerror(errno));
+ }
diff --git a/test/snippets/clock_gettime_heap.variable b/test/snippets/clock_gettime_heap.variable
new file mode 100644
index 0000000..3f75b5f
--- /dev/null
+++ b/test/snippets/clock_gettime_heap.variable
@@ -0,0 +1 @@
+FAKETIME 2020-02-02 02:02:02+00:00
diff --git a/test/snippets/include_headers.h b/test/snippets/include_headers.h
index 55cd48f..1c329bc 100644
--- a/test/snippets/include_headers.h
+++ b/test/snippets/include_headers.h
@@ -6,3 +6,4 @@
#include <string.h>
#include <errno.h>
#include <time.h>
+#include <stdlib.h>