summaryrefslogtreecommitdiff
path: root/TAO/tests/Faults/Faults.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Faults/Faults.mpc')
-rw-r--r--TAO/tests/Faults/Faults.mpc73
1 files changed, 73 insertions, 0 deletions
diff --git a/TAO/tests/Faults/Faults.mpc b/TAO/tests/Faults/Faults.mpc
new file mode 100644
index 00000000000..051a351bdb1
--- /dev/null
+++ b/TAO/tests/Faults/Faults.mpc
@@ -0,0 +1,73 @@
+project: server {
+ IDL_Files {
+ test.idl
+ }
+
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ test_i.cpp
+ server.cpp
+ }
+}
+
+project(middle): server {
+ exename = middle
+
+ IDL_Files {
+ test.idl
+ }
+
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ test_i.cpp
+ middle.cpp
+ }
+}
+
+project(client): server {
+ exename = client
+
+ IDL_Files {
+ test.idl
+ }
+
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ test_i.cpp
+ client.cpp
+ }
+}
+
+project(ping): server {
+ exename = ping
+
+ IDL_Files {
+ ping.idl
+ }
+
+ Source_Files {
+ pingC.cpp
+ pingS.cpp
+ ping_i.cpp
+ ping.cpp
+ }
+}
+
+project(pong): server {
+ exename = pong
+
+ IDL_Files {
+ ping.idl
+ }
+
+ Source_Files {
+ pingC.cpp
+ pingS.cpp
+ ping_i.cpp
+ pong.cpp
+ }
+}
+