summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-02-07 15:52:54 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-02-07 15:52:54 +0000
commitc106727b5b83f0eac720902f4c1746a01540934d (patch)
treef68bf7687b39ebd5ae43c2f7a3a717ee29bfe8bf
parente6a88635a9827498771ae4c051edccdf8ffd1dff (diff)
downloadATCD-c106727b5b83f0eac720902f4c1746a01540934d.tar.gz
ChangeLogTag:Sat Feb 7 09:52:06 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-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
}
}
-