From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A4596279903; Thu, 28 May 2026 20:16:28 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779999389; cv=none; b=gH1DFyUf3cVjqBhTA2Hi4d4nlLil9olUFETsyvkr10ai/ljEG33QvqPj6lM8KuqTi1gMMi42hiUc9tbCVKtxy3dsTGNdoZjkdgI7R+QNQy1YgzAKJt1ibCcQpSm5A0wpb1hm8H2fHoy/ajSdODIodAaBUEmxx2O+Zdazh1f8ybo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779999389; c=relaxed/simple; bh=CSg09EeiJu/k2zzvI+Poxi5jDtjggROWt30hiz6vh7A=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=aTx72lu05aK0PwUonJeqoQcHYYiyZQEgJHyXh7xX1R8+jTtKowwkf7kR+c+gXstctvcIU7ynYU5JJvawgepw43rXCdTdv26+V5K9c604ghrCwSLlueJn/xTW5ga5n9v1IQuoPurM7BEJFtIGSa/KnFefgO3pwxMkEFvWTcMhKbM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=b5TIZ35T; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="b5TIZ35T" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 068131F000E9; Thu, 28 May 2026 20:16:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779999388; bh=aSDX+O3kkra7rniKlTxki90D6/JnsdGxckJ8pOEzgCM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=b5TIZ35TIPZaEh/EFX1DcqE/0GzHayRfqzevd4gocXutKLCppvMX11zNaOV5J5R0N oqzMnui37Kbt15CXoCGuQj6GsDmnwyk31bzmXAIZPlSaPmkH0oeorUKI0Y16+XffGO qCMbtcjpgyNCw+U+gGW6g46r5HMh4p+VZsREddnM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Luiz Capitulino , "Mike Rapoport (Microsoft)" , SeongJae Park , David Hildenbrand , "Liam R. Howlett" , Lorenzo Stoakes , Michal Hocko , Shuah Khan , Suren Baghdasaryan , Vlastimil Babka , Andrew Morton Subject: [PATCH 6.18 050/377] selftests/mm: run_vmtests.sh: fix destructive tests invocation Date: Thu, 28 May 2026 21:44:48 +0200 Message-ID: <20260528194639.823398542@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260528194638.371537336@linuxfoundation.org> References: <20260528194638.371537336@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Luiz Capitulino commit 3432cbb291aabf85f8af4b9d1ec37179168ff999 upstream. Destructive tests should be invoked with -d command-line option, but this won't work today since 'd' is missing in getopts command-line. This commit fixes it. Link: https://lore.kernel.org/214fd9e4-5398-4c26-859e-c982c2e277c3@redhat.com Fixes: f16ff3b692ad ("selftests/mm: run_vmtests.sh: add missing tests") Signed-off-by: Luiz Capitulino Reviewed-by: Mike Rapoport (Microsoft) Reviewed-by: SeongJae Park Cc: David Hildenbrand Cc: Liam R. Howlett Cc: Lorenzo Stoakes Cc: Michal Hocko Cc: Shuah Khan Cc: Suren Baghdasaryan Cc: Vlastimil Babka Cc: Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman --- tools/testing/selftests/mm/run_vmtests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/testing/selftests/mm/run_vmtests.sh +++ b/tools/testing/selftests/mm/run_vmtests.sh @@ -97,7 +97,7 @@ RUN_ALL=false RUN_DESTRUCTIVE=false TAP_PREFIX="# " -while getopts "aht:n" OPT; do +while getopts "aht:nd" OPT; do case ${OPT} in "a") RUN_ALL=true ;; "h") usage ;;