summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tests/ORT/ORT.mpc13
2 files changed, 19 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index bed807a6d2a..b0f2d03d1f5 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Sat Feb 7 09:52:06 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * tests/ORT/ORT.mpc:
+
+ Fixed a few problems with the MPC files that prevented this test
+ from compiling in the daily builds.
+
Sat Feb 7 09:02:54 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/AMI_Buffering/client.cpp:
diff --git a/TAO/tests/ORT/ORT.mpc b/TAO/tests/ORT/ORT.mpc
index 8ef616dfd20..fb932d28ff1 100644
--- a/TAO/tests/ORT/ORT.mpc
+++ b/TAO/tests/ORT/ORT.mpc
@@ -1,10 +1,16 @@
// -*- MPC -*-
// $Id$
+
project(Test_ORT_Server): taoexe, portableserver {
requires += interceptors
idlflags += -I$(TAO_ROOT) -Gv
+ IDL_Files {
+ ORT_test.idl
+ ObjectReferenceFactory.idl
+ }
+
Source_Files {
ORT_testC.cpp
ORT_testS.cpp
@@ -18,13 +24,18 @@ project(Test_ORT_Server): taoexe, portableserver {
}
}
+
project(Test_ORT_Client): taoexe {
requires += interceptors
idlflags += -I$(TAO_ROOT) -Gv
+ after += Test_ORT_Server
+
+ IDL_Files {
+ ORT_test.idl
+ }
Source_Files {
ORT_testC.cpp
client.cpp
}
}
-