From owner-svn-src-all@FreeBSD.ORG Thu Nov 13 05:33:18 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4CA7CFD; Thu, 13 Nov 2014 05:33:18 +0000 (UTC) Received: from mail-ig0-x22a.google.com (mail-ig0-x22a.google.com [IPv6:2607:f8b0:4001:c05::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 97B2C29; Thu, 13 Nov 2014 05:33:18 +0000 (UTC) Received: by mail-ig0-f170.google.com with SMTP id a13so595029igq.3 for ; Wed, 12 Nov 2014 21:33:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=NMaS/teOs+8iso1DEYGgtv7u+/CTIiBNEGSl8XiyJhk=; b=yiSltujCX49e65ufMTM+Pad/fAQVeUp92jqM/EdJlsdBkPPtyj3skokrf3n763FepW 5WSxFxEMvHNSZPnmE5x72obvWnLKUJuO9Akg6KMOmyJelzSAy5GnsUNArk6TY8+9geYu SFnpHoIOE9PmCF35aqeKqHrlm2qSrfB7zdkWa/HWIOq77Kmwsb3EcgXR7+htdS5VNGXw rqFzQmCzYZ/tzffy5xg0BGHazUIe9cLZZRycu0K3CudJjO+VMwQZe3mDI9f7uah1j4uq 4uVuB0KKSAcZ2averc0H1GTMA5emEQReVsaO2tEEuk0ofZEJW5xv2XLiBvRL4ck3jEqH vCKg== MIME-Version: 1.0 X-Received: by 10.107.46.29 with SMTP id i29mr203117ioo.73.1415856797934; Wed, 12 Nov 2014 21:33:17 -0800 (PST) Received: by 10.50.235.49 with HTTP; Wed, 12 Nov 2014 21:33:17 -0800 (PST) In-Reply-To: <201411130046.sAD0ks1f001015@svn.freebsd.org> References: <201411130046.sAD0ks1f001015@svn.freebsd.org> Date: Wed, 12 Nov 2014 21:33:17 -0800 Message-ID: Subject: Re: svn commit: r274460 - head/usr.bin/yacc From: NGie Cooper To: Jung-uk Kim Content-Type: text/plain; charset=UTF-8 Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , Thomas Dickey X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Nov 2014 05:33:18 -0000 On Wed, Nov 12, 2014 at 4:46 PM, Jung-uk Kim wrote: > Author: jkim > Date: Thu Nov 13 00:46:53 2014 > New Revision: 274460 > URL: https://svnweb.freebsd.org/changeset/base/274460 > > Log: > Increase MAXTABLE to the maxmimum possible value. The default value is too > low for complex parsers. Note it was one of those memory optimization hacks > back in the day. > > MFC after: 1 week > > Modified: > head/usr.bin/yacc/Makefile Hi Junk-uk! This commit broke the Jenkins tests because the outputs for some of the tests don't work with -DMAXTABLE=INT_MAX : https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194982 . I've CCed Thomas Dickey for input on this. Thanks!