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 2008/07/11 05:58:41 UTC

svn commit: r675829 - /stdcxx/branches/4.2.x/tests/regress/18.support.runtime.stdcxx-989.cpp

Author: sebor
Date: Thu Jul 10 20:58:41 2008
New Revision: 675829

URL: http://svn.apache.org/viewvc?rev=675829&view=rev
Log:
2008-07-10  Martin Sebor  <se...@roguewave.com>

	* tests/regress/18.support.runtime.stdcxx-989.cpp: Regression test
	for STDCXX-989, verifying the expected value of sizeof(jmp_buf)
	on Linux/x86 and Solaris/SPARC.

Added:
    stdcxx/branches/4.2.x/tests/regress/18.support.runtime.stdcxx-989.cpp   (with props)

Added: stdcxx/branches/4.2.x/tests/regress/18.support.runtime.stdcxx-989.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/tests/regress/18.support.runtime.stdcxx-989.cpp?rev=675829&view=auto
==============================================================================
--- stdcxx/branches/4.2.x/tests/regress/18.support.runtime.stdcxx-989.cpp (added)
+++ stdcxx/branches/4.2.x/tests/regress/18.support.runtime.stdcxx-989.cpp Thu Jul 10 20:58:41 2008
@@ -0,0 +1,57 @@
+/************************************************************************
+ *
+ * 18.support.runtime.stdcxx-989.cpp - regression test for STDCXX-989
+ *
+ * http://issues.apache.org/jira/browse/STDCXX-989
+ *
+ * $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 <csetjmp>
+
+int main ()
+{
+
+#ifdef __linux__
+#  ifdef __i386
+     // Linux on x86 (including x64 and derivatives)
+#    define expected_jmp_buf_size   (4 == sizeof (long) ? 156 : 200)
+#  endif
+#elif defined __sun
+#  ifdef __sparc
+     // Sun Solaris on SPARC
+#    define expected_jmp_buf_size   (sizeof (long) * 12)
+#  endif
+#endif
+
+#ifdef expected_jmp_buf_size
+
+    using namespace std;
+
+    assert (expected_jmp_buf_size == sizeof (jmp_buf));
+
+#endif   // expected_jmp_buf_size
+
+    return 0;
+
+}

Propchange: stdcxx/branches/4.2.x/tests/regress/18.support.runtime.stdcxx-989.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: stdcxx/branches/4.2.x/tests/regress/18.support.runtime.stdcxx-989.cpp
------------------------------------------------------------------------------
    svn:keywords = Id