aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cont.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-06-01 15:23:05 +0200
committerMattias Andrée <maandree@kth.se>2020-06-01 15:23:05 +0200
commit3b401b823ca98e6329450874eadeaa5f5c120cd1 (patch)
tree45bbac972b106f6fb1c8e2c48d3b937f7e169077 /tests/cont.c
parentUse WCOREDUMP rather than __WCOREDUMP (diff)
downloadsctrace-3b401b823ca98e6329450874eadeaa5f5c120cd1.tar.gz
sctrace-3b401b823ca98e6329450874eadeaa5f5c120cd1.tar.bz2
sctrace-3b401b823ca98e6329450874eadeaa5f5c120cd1.tar.xz
Add tests for manually testing
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--tests/cont.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/cont.c b/tests/cont.c
new file mode 100644
index 0000000..8eed336
--- /dev/null
+++ b/tests/cont.c
@@ -0,0 +1,8 @@
+#include <signal.h>
+#include <unistd.h>
+
+int
+main(void)
+{
+ return kill(getpid(), SIGCONT);
+}