summaryrefslogtreecommitdiffstats
path: root/xpcom/tests/TestBlockingProcess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xpcom/tests/TestBlockingProcess.cpp')
-rw-r--r--xpcom/tests/TestBlockingProcess.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/xpcom/tests/TestBlockingProcess.cpp b/xpcom/tests/TestBlockingProcess.cpp
new file mode 100644
index 000000000..9526934c1
--- /dev/null
+++ b/xpcom/tests/TestBlockingProcess.cpp
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main()
+{
+ char tmp;
+ fread(&tmp, sizeof(tmp), 1, stdin);
+ return 0;
+}