summaryrefslogtreecommitdiff
path: root/tests/actions/test/src/run_timeout.cpp
blob: b4746403f238d9e1a9de252eeec1a595c84cd5e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifdef _MSC_VER
#   include <windows.h>
#else
#   include <unistd.h>
#endif

int main(int argc, char** argv) {
#ifdef _MSC_VER
    Sleep(10 * 1000);
#else
    usleep(10 * 100 * 1000);
#endif
    return 0;
}