summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-09-24 16:25:49 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-09-24 16:25:49 +0000
commit5542365e300782ec746b69634f8cf1086ddb6e14 (patch)
tree1d9cac3b9a371f488fc05d74435ba96dcd756eed
parent829badfd5b03ddbb37474a5359bb012090647080 (diff)
downloadATCD-5542365e300782ec746b69634f8cf1086ddb6e14.tar.gz
ChangeLogTag: Fri Sep 24 11:25:18 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLog26
-rw-r--r--TAO/tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc6
-rw-r--r--TAO/tests/Sequence_Unit_Tests/bounded_value_sequence_ut.cpp5
-rw-r--r--TAO/tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp15
-rw-r--r--TAO/tests/Sequence_Unit_Tests/testing_allocation_traits_ut.cpp5
-rw-r--r--TAO/tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp7
-rw-r--r--TAO/tests/Sequence_Unit_Tests/unbounded_value_sequence_ut.cpp5
7 files changed, 31 insertions, 38 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index ecad11894d9..04b95610455 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,7 +1,19 @@
+Fri Sep 24 11:25:18 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc:
+ * tests/Sequence_Unit_Tests/bounded_value_sequence_ut.cpp:
+ * tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp:
+ * tests/Sequence_Unit_Tests/testing_allocation_traits_ut.cpp:
+ * tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp:
+ * tests/Sequence_Unit_Tests/unbounded_value_sequence_ut.cpp:
+
+ Removed the #if 0'ed main() from these cpp files and added exename
+ settings to the necessary projects in the mpc file.
+
Fri Sep 24 11:13:30 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
* tests/Sequence_Unit_Tests/allocation_traits.hpp:
-
+
Changed line with reinterpret_cast<> in
unbounded_reference_allocation_traits::allocbuf() to be
more palatable for MSVC 7.1. Thanks to Carlos O'Ryan
@@ -10,7 +22,7 @@ Fri Sep 24 11:13:30 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
Fri Sep 24 10:08:50 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
* orbsvcs/orbsvcs/AV/RTP.cpp:
-
+
Added statc_cast<> to the last argument passed to the
RTP_Packet constructor, to avoid loss-of-data warnings
on MSVC 7.1.
@@ -18,7 +30,7 @@ Fri Sep 24 10:08:50 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
Fri Sep 24 09:38:16 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
* tao/CORBALOC_Parser.cpp:
-
+
Added #include of ace/os_include/os_netdb.h to pull in define of
MAXHOSTNAMELEN for Windows platforms.
@@ -138,10 +150,10 @@ Fri Sep 24 08:58:40 2004 Iliyan Jeliazkov <jeliazkov_i@ociweb.com>
Fri Sep 24 07:12:12 2004 Carlos O'Ryan <coryan@atdesk.com>
- * tests/Sequence_Unit_Tests/allocation_traits.hpp:
- Add missing return statement to allocbuf() for bounded strings
- of reference-like types. Since this code is not used yet it is
- quite cool that gcc-3.2.3 was able to pick the problem.
+ * tests/Sequence_Unit_Tests/allocation_traits.hpp:
+ Add missing return statement to allocbuf() for bounded strings
+ of reference-like types. Since this code is not used yet it is
+ quite cool that gcc-3.2.3 was able to pick the problem.
Fri Sep 24 10:18:24 2004 <ops@iki.fi>
diff --git a/TAO/tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc b/TAO/tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc
index 1722dc302ac..e3bffce0eaa 100644
--- a/TAO/tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc
+++ b/TAO/tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc
@@ -20,36 +20,42 @@ project(*Unbounded_String) : taoexe {
}
project(*String_Sequence_Element): taoexe, boost_unit_test {
+ exename = string_sequence_element_ut
Source_Files {
string_sequence_element_ut.cpp
}
}
project(*Unbounded_String_Sequence): taoexe, boost_unit_test {
+ exename = unbounded_string_sequence_ut
Source_Files {
unbounded_string_sequence_ut.cpp
}
}
//project(*String_Sequence_Element): taoexe, boost_unit_test {
+// exename = string_sequence_element_ut
// Source_Files {
// string_sequence_element_ut.cpp
// }
//}
project(*Testing_Allocation_Traits): taoexe, boost_unit_test {
+ exename = testing_allocation_traits_ut
Source_Files {
testing_allocation_traits_ut.cpp
}
}
project(*Unbounded_Value_Sequence): taoexe, boost_unit_test {
+ exename = bounded_value_sequence_ut
Source_Files {
unbounded_value_sequence_ut.cpp
}
}
project(*Bounded_Value_Sequence): taoexe, boost_unit_test {
+ exename = bounded_value_sequence_ut
Source_Files {
bounded_value_sequence_ut.cpp
}
diff --git a/TAO/tests/Sequence_Unit_Tests/bounded_value_sequence_ut.cpp b/TAO/tests/Sequence_Unit_Tests/bounded_value_sequence_ut.cpp
index 61426f48f45..219057fb25a 100644
--- a/TAO/tests/Sequence_Unit_Tests/bounded_value_sequence_ut.cpp
+++ b/TAO/tests/Sequence_Unit_Tests/bounded_value_sequence_ut.cpp
@@ -329,8 +329,3 @@ init_unit_test_suite(int, char*[])
return ts.release();
}
-#if 0
-// This is just to convince MPC that I do not need a main() to have a
-// program.
-int main() {}
-#endif
diff --git a/TAO/tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp b/TAO/tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp
index 6608fe5519c..636b5d4d588 100644
--- a/TAO/tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp
+++ b/TAO/tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp
@@ -82,7 +82,7 @@ struct Tester
BOOST_CHECK_MESSAGE(d.expect(0), d);
BOOST_CHECK_MESSAGE(r.expect(0), r);
x = helper<charT>::sample0();
-
+
BOOST_CHECK_MESSAGE(d.expect(1), d);
BOOST_CHECK_MESSAGE(r.expect(1), r);
@@ -179,7 +179,7 @@ struct Tester
BOOST_CHECK_MESSAGE(r.expect(0), r);
x = y;
-
+
BOOST_CHECK_MESSAGE(d.expect(0), d);
BOOST_CHECK_MESSAGE(r.expect(1), r);
@@ -281,7 +281,7 @@ struct Tester
BOOST_CHECK_MESSAGE(r.expect(0), r);
x = y;
-
+
BOOST_CHECK_MESSAGE(d.expect(1), d);
BOOST_CHECK_MESSAGE(r.expect(1), r);
@@ -314,7 +314,7 @@ struct Tester
BOOST_CHECK_MESSAGE(r.expect(0), r);
x = y;
-
+
BOOST_CHECK_MESSAGE(d.expect(1), d);
BOOST_CHECK_MESSAGE(r.expect(1), r);
@@ -376,7 +376,7 @@ private:
}
boost::weak_ptr<Tester> self_;
-};
+};
test_suite *
init_unit_test_suite(int, char*[])
@@ -395,8 +395,3 @@ init_unit_test_suite(int, char*[])
return ts.release();
}
-#if 0
-// This is just to convince MPC that I do not need a main() to have a
-// program.
-int main() {}
-#endif
diff --git a/TAO/tests/Sequence_Unit_Tests/testing_allocation_traits_ut.cpp b/TAO/tests/Sequence_Unit_Tests/testing_allocation_traits_ut.cpp
index 422756842c4..07de54e4b38 100644
--- a/TAO/tests/Sequence_Unit_Tests/testing_allocation_traits_ut.cpp
+++ b/TAO/tests/Sequence_Unit_Tests/testing_allocation_traits_ut.cpp
@@ -198,8 +198,3 @@ init_unit_test_suite(int, char*[])
return ts.release();
}
-#if 0
-// This is just to convince MPC that I do not need a main() to have a
-// program.
-int main() {}
-#endif
diff --git a/TAO/tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp b/TAO/tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp
index 8c9b94d786f..ff907d74f44 100644
--- a/TAO/tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp
+++ b/TAO/tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp
@@ -258,7 +258,7 @@ struct Tester
BOOST_CHECK_MESSAGE(f.expect(0), f);
BOOST_CHECK_MESSAGE(r.expect(32), r);
-
+
}
void add_all(test_suite * ts)
@@ -323,8 +323,3 @@ init_unit_test_suite(int, char*[])
return ts.release();
}
-#if 0
-// This is just to convince MPC that I do not need a main() to have a
-// program.
-int main() {}
-#endif
diff --git a/TAO/tests/Sequence_Unit_Tests/unbounded_value_sequence_ut.cpp b/TAO/tests/Sequence_Unit_Tests/unbounded_value_sequence_ut.cpp
index 84de5b3e219..2482c8f5f8a 100644
--- a/TAO/tests/Sequence_Unit_Tests/unbounded_value_sequence_ut.cpp
+++ b/TAO/tests/Sequence_Unit_Tests/unbounded_value_sequence_ut.cpp
@@ -457,8 +457,3 @@ init_unit_test_suite(int, char*[])
return ts.release();
}
-#if 0
-// This is just to convince MPC that I do not need a main() to have a
-// program.
-int main() {}
-#endif