You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2007/06/18 17:32:17 UTC

svn commit: r548380 - /incubator/stdcxx/trunk/tests/regress/26.valarray.sub.stdcxx-448.cpp

Author: sebor
Date: Mon Jun 18 08:32:08 2007
New Revision: 548380

URL: http://svn.apache.org/viewvc?view=rev&rev=548380
Log:
2007-06-18  Martin Sebor  <se...@roguewave.com>

	* 26.valarray.sub.stdcxx-448.cpp: Regression test for STDCXX-448.

Added:
    incubator/stdcxx/trunk/tests/regress/26.valarray.sub.stdcxx-448.cpp   (with props)

Added: incubator/stdcxx/trunk/tests/regress/26.valarray.sub.stdcxx-448.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/regress/26.valarray.sub.stdcxx-448.cpp?view=auto&rev=548380
==============================================================================
--- incubator/stdcxx/trunk/tests/regress/26.valarray.sub.stdcxx-448.cpp (added)
+++ incubator/stdcxx/trunk/tests/regress/26.valarray.sub.stdcxx-448.cpp Mon Jun 18 08:32:08 2007
@@ -0,0 +1,41 @@
+/************************************************************************
+ *
+ * 26.valarray.sub.stdcxx-448.cpp - regression test for STDCXX-448
+ *   https://issues.apache.org/jira/browse/STDCXX-448
+ *
+ * $Id:$
+ *
+ ***************************************************************************
+ *
+ * Licensed to the Apache Software  Foundation (ASF) under one or more
+ * contributor  license agreements.  See  the NOTICE  file distributed
+ * with  this  work  for  additional information  regarding  copyright
+ * ownership.   The ASF  licenses this  file to  you under  the Apache
+ * License, Version  2.0 (the  "License"); you may  not use  this file
+ * except in  compliance with the License.   You may obtain  a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the  License is distributed on an  "AS IS" BASIS,
+ * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY  KIND, either  express or
+ * implied.   See  the License  for  the  specific language  governing
+ * permissions and limitations under the License.
+ * 
+ **************************************************************************/
+
+#include <cassert>
+#include <valarray>
+
+
+int main ()
+{
+    const std::valarray<double> dval;
+    
+    std::valarray<double> result (dval [std::gslice ()]);
+
+    assert (result.size () == 0);
+
+    return 0;
+}

Propchange: incubator/stdcxx/trunk/tests/regress/26.valarray.sub.stdcxx-448.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/stdcxx/trunk/tests/regress/26.valarray.sub.stdcxx-448.cpp
------------------------------------------------------------------------------
    svn:keywords = Id