Threading libraries test for Thrift C++


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665041 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/threads/ThreadsTest.thrift b/test/threads/ThreadsTest.thrift
new file mode 100755
index 0000000..ebf2513
--- /dev/null
+++ b/test/threads/ThreadsTest.thrift
@@ -0,0 +1,11 @@
+#!/usr/local/bin/thrift -cpp -py
+
+service ThreadsTest {
+  void threadOne(1: i32 sleep=15),
+  void threadTwo(2: i32 sleep=15),
+  void threadThree(3: i32 sleep=15),
+  void threadFour(4: i32 sleep=15)
+
+  void stop();
+
+}