summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsmcqueen <smcqueen@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-11-17 18:44:47 +0000
committersmcqueen <smcqueen@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-11-17 18:44:47 +0000
commit4847523999c17e1893b312237db6e3be33adc715 (patch)
treedca9025ffce242ef9cd3071d93eb32f148020d35
parent23de69c607eedd264341634026a686a8541092dc (diff)
downloadATCD-4847523999c17e1893b312237db6e3be33adc715.tar.gz
ChangeLogTag: Mon Nov 17 18:44:15 UTC 2008 Simon McQueen <sm@prismtech.com>
-rw-r--r--TAO/ChangeLog18
-rw-r--r--TAO/tao/PolicyS.h1
-rw-r--r--TAO/tests/Bug_3513_Regression/test.cpp2
-rw-r--r--TAO/tests/Bug_3514_Regression/Bug_3514_Regression.mpc10
-rw-r--r--TAO/tests/Bug_3514_Regression/README5
-rw-r--r--TAO/tests/Bug_3514_Regression/test.cpp10
-rw-r--r--TAO/tests/Bug_3514_Regression/test.idl6
7 files changed, 52 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 543851f9c45..85ac3e16182 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,21 @@
+Mon Nov 17 18:44:15 UTC 2008 Simon McQueen <sm@prismtech.com>
+
+ * tao/PolicyS.h:
+
+ Add a #include of tao/PortabServer/PolicyS.h.
+
+ * tests/Bug_3513_Regression/test.cpp:
+
+ Whitespace.
+
+ * tests/Bug_3514_Regression:
+ * tests/Bug_3514_Regression/Bug_3514_Regression.mpc:
+ * tests/Bug_3514_Regression/README:
+ * tests/Bug_3514_Regression/test.idl:
+ * tests/Bug_3514_Regression/test.cpp:
+
+ Regression test for the above fix.
+
Mon Nov 17 18:01:17 UTC 2008 Simon McQueen <sm@prismtech.com>
* TAO_IDL/util/utl_global.cpp:
diff --git a/TAO/tao/PolicyS.h b/TAO/tao/PolicyS.h
index 70b87da46b6..46912353c2e 100644
--- a/TAO/tao/PolicyS.h
+++ b/TAO/tao/PolicyS.h
@@ -14,6 +14,7 @@
#ifndef TAO_PIDL_POLICY_S_H
#define TAO_PIDL_POLICY_S_H
#include "tao/PolicyC.h"
+#include "tao/PortableServer/PolicyS.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
diff --git a/TAO/tests/Bug_3513_Regression/test.cpp b/TAO/tests/Bug_3513_Regression/test.cpp
index b639eb885fe..ca1b5553155 100644
--- a/TAO/tests/Bug_3513_Regression/test.cpp
+++ b/TAO/tests/Bug_3513_Regression/test.cpp
@@ -7,3 +7,5 @@ ACE_TMAIN (int, ACE_TCHAR *[])
{
return 0;
}
+
+
diff --git a/TAO/tests/Bug_3514_Regression/Bug_3514_Regression.mpc b/TAO/tests/Bug_3514_Regression/Bug_3514_Regression.mpc
new file mode 100644
index 00000000000..bfe0e4b0ca1
--- /dev/null
+++ b/TAO/tests/Bug_3514_Regression/Bug_3514_Regression.mpc
@@ -0,0 +1,10 @@
+// -*- MPC -*-
+// $Id$
+
+project(*Test) : taoserver {
+ exename = test
+
+ Source_Files {
+ test.cpp
+ }
+}
diff --git a/TAO/tests/Bug_3514_Regression/README b/TAO/tests/Bug_3514_Regression/README
new file mode 100644
index 00000000000..c3421fb54e2
--- /dev/null
+++ b/TAO/tests/Bug_3514_Regression/README
@@ -0,0 +1,5 @@
+# $Id$
+
+This is a compile only test. If it compiles, it's passed.
+
+
diff --git a/TAO/tests/Bug_3514_Regression/test.cpp b/TAO/tests/Bug_3514_Regression/test.cpp
new file mode 100644
index 00000000000..551a2224cb3
--- /dev/null
+++ b/TAO/tests/Bug_3514_Regression/test.cpp
@@ -0,0 +1,10 @@
+// $Id$
+
+#include "testS.h"
+
+int
+ACE_TMAIN (int, ACE_TCHAR *[])
+{
+ return 0;
+}
+
diff --git a/TAO/tests/Bug_3514_Regression/test.idl b/TAO/tests/Bug_3514_Regression/test.idl
new file mode 100644
index 00000000000..5a884db1d07
--- /dev/null
+++ b/TAO/tests/Bug_3514_Regression/test.idl
@@ -0,0 +1,6 @@
+// $Id$
+
+#include <orb.idl>
+
+interface Foo : CORBA::Policy
+{};