From issues-return-1228-apmail-stdcxx-issues-archive=stdcxx.apache.org@stdcxx.apache.org Wed Apr 09 19:26:11 2008 Return-Path: Delivered-To: apmail-stdcxx-issues-archive@locus.apache.org Received: (qmail 95583 invoked from network); 9 Apr 2008 19:26:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Apr 2008 19:26:11 -0000 Received: (qmail 73749 invoked by uid 500); 9 Apr 2008 19:26:11 -0000 Delivered-To: apmail-stdcxx-issues-archive@stdcxx.apache.org Received: (qmail 73725 invoked by uid 500); 9 Apr 2008 19:26:11 -0000 Mailing-List: contact issues-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list issues@stdcxx.apache.org Received: (qmail 73713 invoked by uid 99); 9 Apr 2008 19:26:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 12:26:11 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Apr 2008 19:25:37 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 93B53234C0C1 for ; Wed, 9 Apr 2008 12:23:24 -0700 (PDT) Message-ID: <286000209.1207769004601.JavaMail.jira@brutus> Date: Wed, 9 Apr 2008 12:23:24 -0700 (PDT) From: "Travis Vitek (JIRA)" To: issues@stdcxx.apache.org Subject: [jira] Created: (STDCXX-847) [XLC++ 7,8,9] SEGV in 22.locale.time.get MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [XLC++ 7,8,9] SEGV in 22.locale.time.get ---------------------------------------- Key: STDCXX-847 URL: https://issues.apache.org/jira/browse/STDCXX-847 Project: C++ Standard Library Issue Type: Bug Components: Test Driver Affects Versions: 4.2.1 Environment: AIX 5.3 PowerPC IBM XLC++ 9.0 AIX 5.3 PowerPC IBM XLC++ 8.0 AIX 5.3 PowerPC IBM XLC++ 7.0 Reporter: Travis Vitek Fix For: 4.2.1 On AIX, when compiled with XLC++, the test [22.locale.time.get.cpp|http://svn.apache.org/viewvc/stdcxx/trunk/tests/localization/22.locale.time.get.cpp?view=markup] fails with a {{SIGSEGV}} in all build types. This is the stack dump at the time of the crash. {noformat} Segmentation fault in __xisdigit at 0xd033cc00 0xd033cc00 (__xisdigit+0x14) 80a30000 lwz r5,0x0(r3) (dbx) where __xisdigit(0x5b5b0000, 0x58) at 0xd033cc00 doformat(??, ??, ??, ??, ??, ??, ??, ??) at 0xd0338660 __strftime_std(??, ??, ??, ??, ??, ??, ??, ??) at 0xd0338464 strftime(??, ??, ??, ??) at 0xd0341c48 unnamed block in void test_english(char,const char*,const char*)( = '\0', cname = "char", locname = warning: Unable to access address 0x2006cbf8 from core (invalid char ptr (0x2006cbf8))), line 933 in "22.locale.time.get.cpp" void test_english(char,const char*,const char*)( = '\0', cname = "char", locname = warning: Unable to access address 0x2006cbf8 from core (invalid char ptr (0x2006cbf8))), line 933 in "22.locale.time.get.cpp" run_test(int,char**)( = 1, = 0x2ff22a3c), line 1611 in "22.locale.time.get.cpp" rw_vtest(int,char**,const char*,const char*,const char*,int(*)(int,char**),const char*,char*)(argc = 1, argv = 0x2ff22a3c, file_name = "/amd/devco/vitek/stdcxx/trunk/tests/localization/22.locale.time.get.cpp", clause = "lib.locale.time.get", comment = (nil), fun = 0x2005ec08, optstr = "", va = ""), line 1040 in "driver.cpp" rw_test(int,char**,const char*,const char*,const char*,int(*)(int,char**),const char*,...)(argc = 1, argv = 0x2ff22a3c, fname = "/amd/devco/vitek/stdcxx/trunk/tests/localization/22.locale.time.get.cpp", clause = "lib.locale.time.get", comment = (nil), testfun = 0x2005ec08, optstr = "", ... = 0x0), line 1138 in "driver.cpp" main(argc = 1, argv = 0x2ff22a3c), line 1668 in "22.locale.time.get.cpp" (dbx) list 920,940 920 TEST (T (0, 0, 0, 1, 0, 100), "%x", 8, "x", 0, Eof); 921 922 // exercise time (time_get::get_time()) 923 FUNCTION ("get_time"); 924 925 int len; 926 927 { 928 // determine whether "%X" is equivalent to "%I:%M:%S %p" 929 // (e.g., HP-UX or Linux) or to "%I:%M:%S" (e.g., Compaq 930 // Tru64 UNIX) 931 char buf [128]; 932 const std::tm tmb = mktm (0, 0, 1); 933 len = std::strftime (buf, sizeof buf, "%X", &tmb); 934 } 935 936 const int hour = 11 == len ? 12 : 0; 937 938 TEST (T ( 0, 0, 0), "%X", len, "X", 0, 11 == len ? Good : Eof); 939 TEST (T ( 0, 0, 1), "%X", len, "X", 0, 11 == len ? Good : Eof); 940 TEST (T ( 0, 0, 11), "%X", len, "X", 0, 11 == len ? Good : Eof); (dbx) quit {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.