From patchwork Tue Jun 16 20:00:51 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Malcolm X-Patchwork-Id: 485141 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 06A1A1402AA for ; Wed, 17 Jun 2015 05:46:13 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=UjNK7dwU; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id; q=dns; s=default; b=QR2fj9LxY2sa n5KrWvx6sGT6GxaFlyh8JPpBs7MVfkIv4zmRkp39FRkWYSIfzQ8B/mkawhg3B4UD EWKDYqPvbrJOTIIGNjVwhc9YjaljdlUb8CcRWbrKXTk8k2CX8AANzjzmwU+mc0F9 hW4l4dJoQVFCXBtZy+gvqUGIqm/fwwc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id; s=default; bh=dN7fYGVjdSJ5h2IIjO tkbYEL6MY=; b=UjNK7dwUhDF9WCXWaZgo+6DINYsYJuawAiyIoMhwjYuBBKyMQ/ ZMxhNW4aO1gQD6dS6/qFREul3HmTZdc0vp7l8JKZ/3O6l+zBrIYgOQKfFda1nUXy DYuZrKIyK+LWosGUGccSTFAeD5p0NwQBmjZPA94Wn3gQGR5DGt/qjh1Rs= Received: (qmail 33038 invoked by alias); 16 Jun 2015 19:46:05 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 33020 invoked by uid 89); 16 Jun 2015 19:46:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=no version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 16 Jun 2015 19:46:04 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 79AC433B359; Tue, 16 Jun 2015 19:46:03 +0000 (UTC) Received: from c64.redhat.com (vpn-231-114.phx2.redhat.com [10.3.231.114]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t5GJk2Rc019717; Tue, 16 Jun 2015 15:46:02 -0400 From: David Malcolm To: gcc-patches@gcc.gnu.org, jit@gcc.gnu.org Cc: David Malcolm Subject: [PATCH, committed] PR jit/66539: Properly add testcase Date: Tue, 16 Jun 2015 16:00:51 -0400 Message-Id: <1434484851-19992-1-git-send-email-dmalcolm@redhat.com> X-IsSubscribed: yes This hunk was omitted from r224531. Tested with "make check-jit"; takes jit.sum from 7699 to 7829 passes. Committed to trunk as r224535. gcc/testsuite/ChangeLog: PR jit/66539 * jit.dg/all-non-failing-tests.h: Add test-debug-strings.c to "testcases" array. --- gcc/testsuite/jit.dg/all-non-failing-tests.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gcc/testsuite/jit.dg/all-non-failing-tests.h b/gcc/testsuite/jit.dg/all-non-failing-tests.h index f0000cc..2ac56f2 100644 --- a/gcc/testsuite/jit.dg/all-non-failing-tests.h +++ b/gcc/testsuite/jit.dg/all-non-failing-tests.h @@ -222,6 +222,9 @@ const struct testcase testcases[] = { {"constants", create_code_constants, verify_code_constants}, + {"debug_strings", + create_code_debug_strings, + verify_code_debug_strings}, {"dot_product", create_code_dot_product, verify_code_dot_product},