Author: sebor
Date: Tue Apr 22 17:32:39 2008
New Revision: 650706
URL: http://svn.apache.org/viewvc?rev=650706&view=rev
Log:
2008-04-22 Martin Sebor <[EMAIL PROTECTED]>
* 26.valarray.cassign.cpp (run_test): Disabled tests exercising
valarray specializations on a user-defined type for 4.2.1 and
prior since they are known to fail to compile due to STDCXX-512.
Modified:
stdcxx/branches/4.2.x/tests/numerics/26.valarray.cassign.cpp
Modified: stdcxx/branches/4.2.x/tests/numerics/26.valarray.cassign.cpp
URL:
http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/tests/numerics/26.valarray.cassign.cpp?rev=650706&r1=650705&r2=650706&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/tests/numerics/26.valarray.cassign.cpp (original)
+++ stdcxx/branches/4.2.x/tests/numerics/26.valarray.cassign.cpp Tue Apr 22
17:32:39 2008
@@ -22,7 +22,7 @@
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*
- * Copyright (C) 2007 Rogue Wave Software, Inc.
+ * Copyright (C) 2007-2008 Rogue Wave Software, Inc.
*
**************************************************************************/
@@ -805,15 +805,15 @@
TEST (int);
TEST (double);
-#if 0x04020000 >= _RWSTD_VER
+#if 0x04020100 >= _RWSTD_VER
- // test fails to compile with stdcxx 4.2.0 and prior due to
+ // test fails to compile with stdcxx 4.2.1 and prior due to
// STDCXX-512: http://issues.apache.org/jira/browse/STDCXX-512
rw_warn (0, 0, __LINE__,
"test of UserClass disabled in stdcxx 4.2.0 and prior "
"due to STDCXX-512");
-#else // stdcxx > 4.2.0
+#else // stdcxx >= 4.2.1
TEST (UserClass);