summaryrefslogtreecommitdiff
path: root/source/tests/duration.test.c
blob: 9613583ac7372c2eaa13368676c33874afeeb9ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#define KIT_TEST_FILE duration
#include "../kit/kit_test.h"

#if defined(_WIN32) && !defined(__CYGWIN__)
__declspec(dllimport) void __stdcall Sleep(unsigned long timeout);
static void kit_sleep(int ms) {
  Sleep(ms);
}
#else
#  include <stdlib.h>
#  include <unistd.h>
static void kit_sleep(int ms) {
  usleep(ms * 1000);
}
#endif

TEST("test duration") {
  kit_sleep(100);
}