From patchwork Tue Apr 25 13:50:08 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 754837 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 3wC4NR4GcHz9s7n for ; Tue, 25 Apr 2017 23:50:31 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="IMw5kxkI"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; q=dns; s= default; b=vWk47TXLriW9b7+w47ferDPz3ebO8UJgAtcLhH3DxksYwtq78wu6X tq1VPmChwCxYiEYFPvQTb9/YVfTDRTQBJ/OjBOA697YblzTlA1+/YftbFEdWcGMw mOgmSK1Y/ncKpgVb9IaJFN/hoyj0hG5holiPrlltaG10x4jOMmliU8= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; s=default; bh=CazHJ3utJdSpDUYFR0RRRSkfelA=; b=IMw5kxkIEGb8FI0k2w9M6ZARktww ft0yJq56yJkdoJPvM/396x03DnYuXAKTSH3G/YtGBh0bqaHg7748grMuYIlTMI8j Nzm9aOAOo+KqFEGaoOlBAM0B77mVVzDs1KYVtVIk6EfFM1NlcG66ARdlurgE4t2T WFAC4hy9M6v4KuA= Received: (qmail 25150 invoked by alias); 25 Apr 2017 13:50:20 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 24654 invoked by uid 89); 25 Apr 2017 13:50:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, RCVD_IN_SORBS_SPAM autolearn=ham version=3.3.2 spammy=Hx-languages-length:701 X-HELO: homiemail-a118.g.dreamhost.com From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Subject: [COMMITTED][glibc-buildbot] Fix typo Date: Tue, 25 Apr 2017 19:20:08 +0530 Message-Id: <1493128208-17563-1-git-send-email-siddhesh@gotplt.org> Sorry, I broke all of the builders with my last commit because I missed a comma. This is what I pushed to fix it. Siddhesh --- scripts/slave/buildbot_selector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/slave/buildbot_selector.py b/scripts/slave/buildbot_selector.py index 8e6ab42..bd336a1 100755 --- a/scripts/slave/buildbot_selector.py +++ b/scripts/slave/buildbot_selector.py @@ -22,7 +22,7 @@ BOT_ASSIGNMENT = { '--enable-lock-elision', ]), 'glibc-s390x-linux': bash('glibc-native.sh'), - 'glibc-aarch64-linux': bash('glibc-native.sh' [ + 'glibc-aarch64-linux': bash('glibc-native.sh', [ '--enable-tunables' ]), }