From patchwork Fri May 15 19:55:46 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella Netto X-Patchwork-Id: 6753 Received: (qmail 5745 invoked by alias); 15 May 2015 19:55:53 -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 5733 invoked by uid 89); 15 May 2015 19:55:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qc0-f182.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=Z0zMyK7qLSgg6dzWbeSVFWwM1fpBq9rgT6ic//e6KEw=; b=Uw0KPhGGACMjKM0zmWiC6rc/YTU4OACbRDDvb8+xmKsVYApNgR+B7sATR8Y0/RSNsC XVaq5AYXrVyuOJJcZp4ZbCw7i7X9hjpHQ0UoD3PZUTj8L9srlePZLxHLY9OeGr3VpNYz zxXztRCw8S4NhnqdXo4LttSbC3XxXYDeQMFnBWnrR61l7MqJPRmc9kCS0UYeJ123yLTl q7CybaaYj4lRnJRWpTSJykPgMokyMo26bD4hZ+y1VKtFQDn2cpLjRvVY5v/EP+tRt8l9 KD3sNkUZVTEMluNWnvMkqibe7Sat7+ihl/ial87xb8wdtzkxlI8VciGFoHGh8k9ipRMF pfcA== X-Gm-Message-State: ALoCoQllPoQb/iSCW9et5go4quiobeBpSBHL8I2z8OffvjrD/AUByejRi2FwBEzwIcM7u3jKEGrd X-Received: by 10.140.25.208 with SMTP id 74mr14282799qgt.104.1431719749915; Fri, 15 May 2015 12:55:49 -0700 (PDT) Message-ID: <55564F42.2070803@linaro.org> Date: Fri, 15 May 2015 16:55:46 -0300 From: Adhemerval Zanella User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: GNU C Library Subject: [PATCH] Fix stdlib/tst-setcontext3 with dash [BZ#18418] This patch remove the non-portable array usage on tst-setcontext3.sh script. It fixes the testcase when using dash as default shell. Tested on x86_64. OK to apply? --- 2015-05-14 Adhemerval Zanella [BZ #18418] * stdlib/tst-setcontext3.sh: Remove non-portable array use. -- diff --git a/NEWS b/NEWS index 44803fa..a9ba85a 100644 --- a/NEWS +++ b/NEWS @@ -17,7 +17,8 @@ Version 2.22 17999, 18007, 18019, 18020, 18029, 18030, 18032, 18036, 18038, 18039, 18042, 18043, 18046, 18047, 18068, 18080, 18093, 18100, 18104, 18110, 18111, 18125, 18128, 18138, 18185, 18196, 18197, 18206, 18210, 18211, - 18217, 18220, 18221, 18247, 18287, 18319, 18333, 18346, 18397, 18409. + 18217, 18220, 18221, 18247, 18287, 18319, 18333, 18346, 18397, 18409, + 18418. * Cache information can be queried via sysconf() function on s390 e.g. with _SC_LEVEL1_ICACHE_SIZE as argument. diff --git a/stdlib/tst-setcontext3.sh b/stdlib/tst-setcontext3.sh index 6ad67a8..b48e6bb 100644 --- a/stdlib/tst-setcontext3.sh +++ b/stdlib/tst-setcontext3.sh @@ -29,14 +29,12 @@ test_pre="${test_program_prefix_before_env} ${run_program_env}" test="${test_program_prefix_after_env} ${objpfx}tst-setcontext3" out=${objpfx}tst-setcontext3.out -tempfiles=() cleanup() { - rm -f "${tempfiles[@]}" + rm -f $tempfile } trap cleanup 0 tempfile=$(mktemp "tst-setcontext3.XXXXXXXXXX") -tempfiles+=("$tempfile") # We want to run the test program and see if secontext called # exit() and wrote out the test file we specified. If the