From owner-freebsd-office@freebsd.org Tue Jun 7 20:54:12 2016 Return-Path: Delivered-To: freebsd-office@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A355CB6EB76 for ; Tue, 7 Jun 2016 20:54:12 +0000 (UTC) (envelope-from dmk@ncf.ca) Received: from mail.ncf.ca (mail.ncf.ca [206.47.12.45]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7FFEF1A73 for ; Tue, 7 Jun 2016 20:54:12 +0000 (UTC) (envelope-from dmk@ncf.ca) Received: from mail.ncf.ca (localhost [127.0.0.1]) by mail.ncf.ca (Postfix) with ESMTP id 5A20AA0FEB for ; Tue, 7 Jun 2016 16:48:30 -0400 (EDT) Received: from hudson.openrogers.local (CPE30e4dbfba484-CM0014e887dd48.cpe.net.cable.rogers.com [174.112.16.195]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: du880) by mail.ncf.ca (Postfix) with ESMTPSA id 3E331A0F93 for ; Tue, 7 Jun 2016 16:48:30 -0400 (EDT) DKIM-Filter: OpenDKIM Filter v2.9.1 mail.ncf.ca 3E331A0F93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ncf.ca; s=mail; t=1465332510; bh=I8BE5NMxpVbLg5yQyQ1CQFezsytJoNAvUWkJPj1IXyk=; h=From:To:Subject:Date:From; b=Nr74DRzc3iOcv7agBvWbDMM196J0NG1ZKUGgY6s/0u2aU5UYgZkeMUqvZRF3Z+Irw qURb90S0wZkZ9BD5rKu39Qt+tl7kbMWyWUQ8uqKz8ngJqwJmxzS9lJDQjEKS7htq/h BERfM21s9mJa2L5p/rCgt1sZckIe5Onm0gnP9KJM= From: Dwayne MacKinnon To: freebsd-office@freebsd.org Subject: Unit-test failure with libreoffice-5.0.6 Date: Tue, 07 Jun 2016 16:48:29 -0400 Message-ID: <3767958.x42iW829eZ@hudson.openrogers.local> User-Agent: KMail/4.14.3 (FreeBSD/10.3-RELEASE; KDE/4.14.3; amd64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-NCF-Filtered: By ProxSMTP on pallando Tue Jun 7 16:48:30 2016 -0400 (EDT) X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Jun 2016 20:54:12 -0000 Hi all, When upgrading libreoffice recently to 5.0.6 on FreeBSD 10.3-RELEASE amd64 I ran into this: /usr/ports/editors/libreoffice/work/libreoffice-5.0.6.3/sc/qa/unit/ucalc.cxx:4540:Test::testAutoFill assertion failed - Expression: m_pDoc->GetCellType(ScAddress(0,i,0)) == CELLTYPE_NONE ucalc.cxx:4540:Assertion Test name: Test::testAutoFill assertion failed - Expression: m_pDoc->GetCellType(ScAddress(0,i,0)) == CELLTYPE_NONE Failures !!! Run: 205 Failure total: 1 Failures: 1 Errors: 0 Error: a unit test failed, please do one of: export DEBUGCPPUNIT=TRUE # for exception catching export CPPUNITTRACE="gdb --args" # for interactive debugging on Linux export VALGRIND=memcheck # for memory checking and retry using: make CppunitTest_sc_ucalc I eventually tracked it down to the fact that I had WITH_DEBUG=YES enabled in /etc/make.conf. Commented that out, and no problem. Just thought I should let folks know. Cheers, DMK