diff options
author | bala <balanatarajan@users.noreply.github.com> | 2002-08-27 20:43:07 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2002-08-27 20:43:07 +0000 |
commit | dfd0642b76e4b5b332008b72686f6ff191775343 (patch) | |
tree | 52f35652e75a8d39c8b8b171173cea771472168b /TAO | |
parent | d0140932b4cb2f2520bad9139f3a8f34b6484298 (diff) | |
download | ATCD-dfd0642b76e4b5b332008b72686f6ff191775343.tar.gz |
ChangeLogTag: Tue Aug 27 15:41:57 2002 Balachandran Natarajan <bala@isis-server.vuse.vanderbilt.edu>
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLog | 7 | ||||
-rw-r--r-- | TAO/tests/Makefile | 1 | ||||
-rw-r--r-- | TAO/tests/ORB_shutdown/Makefile.bor | 7 | ||||
-rw-r--r-- | TAO/tests/ORB_shutdown/server.bor | 39 |
4 files changed, 54 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 288e81a8be4..4381c69a58c 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,10 @@ +Tue Aug 27 15:41:57 2002 Balachandran Natarajan <bala@isis-server.vuse.vanderbilt.edu> + + * tests/ORB_shutdown/server.bor: + * tests/ORB_shutdown/Makefile.bor: Added these files. + + * tests/Makefile: Added the new test for the daily builds to pick up. + Tue Aug 27 15:48:17 2002 Irfan Pyarali <irfan@oomworks.com> * tao\PortableServer\PortableServer_PolicyFactory.cpp: New class diff --git a/TAO/tests/Makefile b/TAO/tests/Makefile index 5b51b6e0de2..9e833243520 100644 --- a/TAO/tests/Makefile +++ b/TAO/tests/Makefile @@ -83,6 +83,7 @@ DIRS = CDR \ Oneways_Invoking_Twoways \ AMI_Buffering \ DLL_ORB \ + ORB_shutdown \ Two_Objects \ Nested_Upcall_Crash diff --git a/TAO/tests/ORB_shutdown/Makefile.bor b/TAO/tests/ORB_shutdown/Makefile.bor new file mode 100644 index 00000000000..22618e99c82 --- /dev/null +++ b/TAO/tests/ORB_shutdown/Makefile.bor @@ -0,0 +1,7 @@ +# +# $Id$ +# + +MAKEFILES = server.bor + +!include <$(ACE_ROOT)\include\makeinclude\recurse.bor> diff --git a/TAO/tests/ORB_shutdown/server.bor b/TAO/tests/ORB_shutdown/server.bor new file mode 100644 index 00000000000..27b6d3fbcc4 --- /dev/null +++ b/TAO/tests/ORB_shutdown/server.bor @@ -0,0 +1,39 @@ +# +# $Id$ +# + +NAME = server + +TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe -Ge 1 + +OBJFILES = \ + $(OBJDIR)\TestC.obj \ + $(OBJDIR)\TestS.obj \ + $(OBJDIR)\Foo_Bar.obj \ + $(OBJDIR)\server.obj + +CFLAGS = \ + $(ACE_CFLAGS) \ + $(TAO_CFLAGS) \ + $(TAO_PORTABLESERVER_CFLAGS) + +LIBFILES = \ + $(ACE_LIB) \ + $(TAO_LIB) \ + $(TAO_PORTABLESERVER_LIB) + +IDLFILES = \ + $(IDLDIR)\Test.idl + +CPPDIR = . + +IDLDIR = . + +!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor> + +# +# IDL Build rules +# + +$(IDLDIR)\TestS.cpp $(IDLDIR)\TestC.cpp: $(IDLDIR)\Test.idl + $(TAO_IDL) $** |