summaryrefslogtreecommitdiff
path: root/tests/actions/test/src/run_timeout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/actions/test/src/run_timeout.cpp')
-rw-r--r--tests/actions/test/src/run_timeout.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/actions/test/src/run_timeout.cpp b/tests/actions/test/src/run_timeout.cpp
new file mode 100644
index 000000000..b4746403f
--- /dev/null
+++ b/tests/actions/test/src/run_timeout.cpp
@@ -0,0 +1,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;
+}