From patchwork Fri Jun 22 22:19:43 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bart Van Assche X-Patchwork-Id: 10483171 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 80CFF60230 for ; Fri, 22 Jun 2018 22:20:00 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 71E8828FF3 for ; Fri, 22 Jun 2018 22:20:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 66E8C28FF9; Fri, 22 Jun 2018 22:20:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1EBA228FF3 for ; Fri, 22 Jun 2018 22:20:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933824AbeFVWT6 (ORCPT ); Fri, 22 Jun 2018 18:19:58 -0400 Received: from esa3.hgst.iphmx.com ([216.71.153.141]:59818 "EHLO esa3.hgst.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933863AbeFVWTx (ORCPT ); Fri, 22 Jun 2018 18:19:53 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=wdc.com; i=@wdc.com; q=dns/txt; s=dkim.wdc.com; t=1529705994; x=1561241994; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=+Kf/VTqylF3eBnVM4TxLmq9qILYMDyE+g47Q1D7JNVQ=; b=BVSn2V1gnr4jG8btkio0/YBknmFAaPRiUUxeQYSW9s66Jtg0eQ3dfWt9 6Sgd0nbQ75jp1HMX4jQf9X2P8Ruqz7fOldIgPAz7ErsPbDNOjLjV3GZM3 uxcSgwPH9HbThy7+TpLSIIEpF6S4oUQJ7KfO8HmR0AZNjLT4vNogeHlxM ZAFaXFL+4aNf1iwHvMYxjDoRE2mgu0RH3Ff04sby+odz9hoE+aHCzJYvW 3MG4Ewtmv1v20Zycj/T6vgWsrBRdQaP2RFFT8efUFTDDBB85uOfdiH0d2 lmeB1PM4A8gFwNXVarOEmS5SIyuSOyO3IQsBzLXyleEvvguDbzkUf9lrk g==; X-IronPort-AV: E=Sophos;i="5.51,259,1526313600"; d="scan'208";a="83827531" Received: from h199-255-45-15.hgst.com (HELO uls-op-cesaep02.wdc.com) ([199.255.45.15]) by ob1.hgst.iphmx.com with ESMTP; 23 Jun 2018 06:19:49 +0800 Received: from uls-op-cesaip01.wdc.com ([10.248.3.36]) by uls-op-cesaep02.wdc.com with ESMTP; 22 Jun 2018 15:09:16 -0700 Received: from thinkpad-bart.sdcorp.global.sandisk.com ([10.111.67.248]) by uls-op-cesaip01.wdc.com with ESMTP; 22 Jun 2018 15:19:48 -0700 From: Bart Van Assche To: Omar Sandoval Cc: linux-block@vger.kernel.org, Bart Van Assche Subject: [PATCH blktests 12/15] check: Make TMPDIR absolute Date: Fri, 22 Jun 2018 15:19:43 -0700 Message-Id: <20180622221946.10987-13-bart.vanassche@wdc.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180622221946.10987-1-bart.vanassche@wdc.com> References: <20180622221946.10987-1-bart.vanassche@wdc.com> Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This avoids that ${TMPDIR} gets misinterpreted if a test script modifies the working directory. Signed-off-by: Bart Van Assche --- check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check b/check index cf2090f546a5..a7dd825ad03a 100755 --- a/check +++ b/check @@ -323,7 +323,7 @@ _call_test() { fi trap _cleanup EXIT - if ! TMPDIR="$(mktemp --tmpdir -p results -d "tmpdir.${TEST_NAME//\//.}.XXX")"; then + if ! TMPDIR="$(mktemp --tmpdir -p "$PWD/results" -d "tmpdir.${TEST_NAME//\//.}.XXX")"; then return fi