From patchwork Tue May 7 19:07:36 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Sterba X-Patchwork-Id: 13657637 Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 684E114E2EF for ; Tue, 7 May 2024 19:07:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.131 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715108862; cv=none; b=lpdspYOPwx8M54yB0YyFa1oxqtZu7FR6cOzT5VAlUBz9ezPZIas9eeoP/noTsbyrG2Cw/zRsOJiqUl7hsctlcozJ/Dhdmti98SOvfDbH1/SvC8uNHBKemw8oeuYn/agY2orgPRy/q+9E1NsrSDimN8itYmHirOqUow91VoiqjTw= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715108862; c=relaxed/simple; bh=wxPK/4AD+k1jetfimDtAld4bz0aRchuxfSE5P8wC2vg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fxavQj7Rbi1GCCiyrBEY7YnVBw6j+tQSNNEUKKIPj8vpwVblXgQGx5SlDNVGITU43VTATJRRnvUWcLepxnDMGz6WU9RlOZQ5LRI7rsL4xDXvc/YRqz2IVsB7yI/tYdlHOnlpcxhyhi8FGB3BcrgmHgAbsYMkNKnxm5ccjox5GQQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=suse.com; spf=pass smtp.mailfrom=suse.com; arc=none smtp.client-ip=195.135.223.131 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=suse.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.com Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 9827D20F65; Tue, 7 May 2024 19:07:37 +0000 (UTC) Authentication-Results: smtp-out2.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 9157A139CB; Tue, 7 May 2024 19:07:37 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id ynZ6I/l7OmZeGwAAD6G6ig (envelope-from ); Tue, 07 May 2024 19:07:37 +0000 From: David Sterba To: fstests@vger.kernel.org Cc: David Sterba Subject: [PATCH 1/4] Move shared/032 to generic/740 Date: Tue, 7 May 2024 21:07:36 +0200 Message-ID: <8dcb7d564180452eec0c2888740c1b0919e171d3.1715108589.git.dsterba@suse.com> X-Mailer: git-send-email 2.44.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: fstests@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spam-Level: X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Spam-Flag: NO X-Spam-Score: -4.00 X-Rspamd-Queue-Id: 9827D20F65 X-Rspamd-Server: rspamd2.dmz-prg2.suse.org X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action The shared/ directory was supposed to host tests that apply to a subset of all supported filesystems but this is not utilized much and creates a split from the generic tests. Move the test to generic. Signed-off-by: David Sterba --- tests/{shared/032 => generic/740} | 2 +- tests/{shared/032.out => generic/740.out} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{shared/032 => generic/740} (99%) rename tests/{shared/032.out => generic/740.out} (100%) diff --git a/tests/shared/032 b/tests/generic/740 similarity index 99% rename from tests/shared/032 rename to tests/generic/740 index 131323ab5b0ff8..6ed248617eaa6b 100755 --- a/tests/shared/032 +++ b/tests/generic/740 @@ -2,7 +2,7 @@ # SPDX-License-Identifier: GPL-2.0 # Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved. # -# FS QA Test No. 032 +# FS QA Test No. 740 # # cross check mkfs detection of foreign filesystems # diff --git a/tests/shared/032.out b/tests/generic/740.out similarity index 100% rename from tests/shared/032.out rename to tests/generic/740.out From patchwork Tue May 7 19:07:39 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Sterba X-Patchwork-Id: 13657638 Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A63A616D9D2 for ; Tue, 7 May 2024 19:07:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.131 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715108867; cv=none; b=PN54H+OKSSzgOFOLRVsWV9D27QD6hhNKtOvBROdzjUccWG3l1uF+8ewBC/XFpOQEK2or2viKO6465100NnBe9AzkPphjSQMDNeBGhr5qC4+Gdnas11uwyvpt2ppP+wisbk1GVanlNWn3JOZY6a/zva4VvFQdD86ooKmhpukoU5c= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715108867; c=relaxed/simple; bh=MVBKVZyn2cideKkeg2KldXAJ4NPAzvaT2TGW+jiqqFg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MLFa20+bcMCsEKOvAFMFs762yZjMPzq341JeoLUrLIwT7UWHPh4OKnRtVHuZ2eKabbLDHR72JGkvFXnrHtdK+CRHnHARn92zhFdX8sp9qzbvU1TJbPquWcuo/niB0Mnb+GEcQWVOQtEFktzMmwWJA89mC+KIwWQ42iEommQZ15g= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=suse.com; spf=pass smtp.mailfrom=suse.com; dkim=pass (1024-bit key) header.d=suse.com header.i=@suse.com header.b=iKlZwjFI; dkim=pass (1024-bit key) header.d=suse.com header.i=@suse.com header.b=iKlZwjFI; arc=none smtp.client-ip=195.135.223.131 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=suse.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=suse.com header.i=@suse.com header.b="iKlZwjFI"; dkim=pass (1024-bit key) header.d=suse.com header.i=@suse.com header.b="iKlZwjFI" Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 0035620F67; Tue, 7 May 2024 19:07:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.com; s=susede1; t=1715108864; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=XxVU7VVErSUy7qvQBj9qFVnKGbAdxP8kvmy+bsDHv6Y=; b=iKlZwjFICl5TyVCXY5v0rlyitT4+LE9ElxYKT8wi9+m5l5NVwSP89Ox5YtmetdCFEX7D/J D/HI8KN65+XdNJgpkgdWmEwwXA+MqMJ3JxB92OFTMhvULkn0VQKz7v822DM8hY/iHEtxmQ fTAIkJMkAR/LoKNnrr+liPX3DLZPRSY= Authentication-Results: smtp-out2.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.com; s=susede1; t=1715108864; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=XxVU7VVErSUy7qvQBj9qFVnKGbAdxP8kvmy+bsDHv6Y=; b=iKlZwjFICl5TyVCXY5v0rlyitT4+LE9ElxYKT8wi9+m5l5NVwSP89Ox5YtmetdCFEX7D/J D/HI8KN65+XdNJgpkgdWmEwwXA+MqMJ3JxB92OFTMhvULkn0VQKz7v822DM8hY/iHEtxmQ fTAIkJMkAR/LoKNnrr+liPX3DLZPRSY= Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id EF260139CB; Tue, 7 May 2024 19:07:43 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id NpVhOv97OmZlGwAAD6G6ig (envelope-from ); Tue, 07 May 2024 19:07:43 +0000 From: David Sterba To: fstests@vger.kernel.org Cc: David Sterba Subject: [PATCH 2/4] Move shared/002 to generic/745 Date: Tue, 7 May 2024 21:07:39 +0200 Message-ID: X-Mailer: git-send-email 2.44.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: fstests@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Spam-Level: X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[100.00%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-1.000]; MIME_GOOD(-0.10)[text/plain]; RCPT_COUNT_TWO(0.00)[2]; RCVD_VIA_SMTP_AUTH(0.00)[]; MIME_TRACE(0.00)[0:+]; ARC_NA(0.00)[]; DKIM_SIGNED(0.00)[suse.com:s=susede1]; FUZZY_BLOCKED(0.00)[rspamd.com]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; DBL_BLOCKED_OPENRESOLVER(0.00)[suse.com:email,imap1.dmz-prg2.suse.org:helo,imap1.dmz-prg2.suse.org:rdns]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[] X-Spam-Score: -6.80 X-Spam-Flag: NO The shared/ directory was supposed to host tests that apply to a subset of all supported filesystems but this is not utilized much and creates a split from the generic tests. Move the test to generic. Signed-off-by: David Sterba --- tests/{shared/002 => generic/745} | 2 +- tests/{shared/002.out => generic/745.out} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{shared/002 => generic/745} (99%) rename tests/{shared/002.out => generic/745.out} (100%) diff --git a/tests/shared/002 b/tests/generic/745 similarity index 99% rename from tests/shared/002 rename to tests/generic/745 index d99539c91907b5..0f47f9c69ef40a 100755 --- a/tests/shared/002 +++ b/tests/generic/745 @@ -2,7 +2,7 @@ # SPDX-License-Identifier: GPL-2.0 # Copyright (C) 2015 SUSE Linux Products GmbH. All Rights Reserved. # -# FS QA Test No. 002 +# FS QA Test No. 745 # # Test that after syncing the filesystem, adding many xattrs to a file, syncing # the filesystem again, writing to the file and then doing a fsync against that diff --git a/tests/shared/002.out b/tests/generic/745.out similarity index 100% rename from tests/shared/002.out rename to tests/generic/745.out From patchwork Tue May 7 19:07:45 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Sterba X-Patchwork-Id: 13657639 Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 60A4716F0C7 for ; Tue, 7 May 2024 19:07:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.130 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715108870; cv=none; b=OhMjqCxUWXPYJZmmHCW1Tn3/8JylYjHc0AZy1VAAaD0ByBdErn/BlwaqebzJYaHk42GGOdnhDkWgdNCUOBKdyZGFi7Jq3qABLBLP/B6kbp0zBnW+Uc4Ppcu7KxOU8+0c9s58t2Wd88Ee9tPkxzECQPhVhyT35gIk9crYWshwK1w= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715108870; c=relaxed/simple; bh=0NUao/gEFdY1TO+f/WA4MFNhUUeKucCQ44/+yK3adxs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=PIT3zTuvKEidQTIvQ0de3IIUbi4K+CChvfTVwhGR7ZfrYUzpw7arD996WskY8CfdyG8F0/F3seKSOaGNHWV7kH77DRs5sRZiOcisWiv6Tv4zd3VKP91P3s2xwsSr9TeY2HnkR0YbX0z4NXgPhNYBqBJl+YUjNPTYgsMh+ndItyg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=suse.com; spf=pass smtp.mailfrom=suse.com; arc=none smtp.client-ip=195.135.223.130 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=suse.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.com Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 5F04B343FE; Tue, 7 May 2024 19:07:46 +0000 (UTC) Authentication-Results: smtp-out1.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 58921139CB; Tue, 7 May 2024 19:07:46 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id QCqaFQJ8OmZpGwAAD6G6ig (envelope-from ); Tue, 07 May 2024 19:07:46 +0000 From: David Sterba To: fstests@vger.kernel.org Cc: David Sterba Subject: [PATCH 3/4] Move shared/298 to generic/746 Date: Tue, 7 May 2024 21:07:45 +0200 Message-ID: X-Mailer: git-send-email 2.44.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: fstests@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spam-Level: X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Spam-Flag: NO X-Spam-Score: -4.00 X-Rspamd-Queue-Id: 5F04B343FE X-Rspamd-Server: rspamd2.dmz-prg2.suse.org X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action The shared/ directory was supposed to host tests that apply to a subset of all supported filesystems but this is not utilized much and creates a split from the generic tests. Move the test to generic. Signed-off-by: David Sterba --- tests/{shared/298 => generic/746} | 2 +- tests/{shared/298.out => generic/746.out} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{shared/298 => generic/746} (99%) rename tests/{shared/298.out => generic/746.out} (100%) diff --git a/tests/shared/298 b/tests/generic/746 similarity index 99% rename from tests/shared/298 rename to tests/generic/746 index 1d4e8d943bdaa6..0e6387fe4d5ece 100755 --- a/tests/shared/298 +++ b/tests/generic/746 @@ -2,7 +2,7 @@ # SPDX-License-Identifier: GPL-2.0 # Copyright (c) 2013 Red Hat, Inc., Tomas Racek # -# FS QA Test No. 298 +# FS QA Test No. 746 # # Test that filesystem sends discard requests only on free blocks # diff --git a/tests/shared/298.out b/tests/generic/746.out similarity index 100% rename from tests/shared/298.out rename to tests/generic/746.out From patchwork Tue May 7 19:07:47 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Sterba X-Patchwork-Id: 13657640 Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6948D16F27C for ; Tue, 7 May 2024 19:07:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.131 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715108872; cv=none; b=Zy/NeyL/l524bg6cy8sOLe8UvcNDrzQ/E96yYetkbE7kQIA3yO6VJbn88QUjPXxzBWKpWIt3JxYSrlPLisAmvu4FpCQ+kBhjF7PDgoyzHUzx5uF9H3ieGaXKUCGMQipQHPsJlrqNSe0IpWE6TqBG/7coJGwuNlhCFkOZKKtecgY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715108872; c=relaxed/simple; bh=tytckNNkvylephPzluVXggJbqrb0scNQnPonPlVJkx4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Oq2CSSdkrpujJaBn7EWhmR9FPOVSPdndt7sOTPcbjVyd34BEBUatDW2KEXLAcrtzCvsp6g4p7tgfbLqP0rMT+LVsj59TXsvLR97jQqSF3J8pQmY9rmyRT6DBHUq6BuN24S0dmGh3yE06laQYIF8HaCT5GXtDkz1uRD2eqfigprU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=suse.com; spf=pass smtp.mailfrom=suse.com; arc=none smtp.client-ip=195.135.223.131 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=suse.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.com Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id BA1DB20F67; Tue, 7 May 2024 19:07:48 +0000 (UTC) Authentication-Results: smtp-out2.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id B3B7A139CB; Tue, 7 May 2024 19:07:48 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id HjjcKwR8OmZtGwAAD6G6ig (envelope-from ); Tue, 07 May 2024 19:07:48 +0000 From: David Sterba To: fstests@vger.kernel.org Cc: David Sterba Subject: [PATCH 4/4] Remove rest of shared/ Date: Tue, 7 May 2024 21:07:47 +0200 Message-ID: <943757aa0f540938acd3fdbe733133ec1f07edc2.1715108589.git.dsterba@suse.com> X-Mailer: git-send-email 2.44.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: fstests@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spam-Level: X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Spam-Flag: NO X-Spam-Score: -4.00 X-Rspamd-Queue-Id: BA1DB20F67 X-Rspamd-Server: rspamd2.dmz-prg2.suse.org X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action All tests from shared/ have been moved to generic/, remove the Makefile and the reference from the 'check' scripts. Signed-off-by: David Sterba --- check | 2 +- tests/shared/Makefile | 24 ------------------------ 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 tests/shared/Makefile diff --git a/check b/check index c6dba89b5b506e..d2cd23b7e161b4 100755 --- a/check +++ b/check @@ -49,7 +49,7 @@ timestamp=${TIMESTAMP:=false} rm -f $tmp.list $tmp.tmp $tmp.grep $here/$iam.out $tmp.report.* $tmp.arglist -SRC_GROUPS="generic shared" +SRC_GROUPS="generic" export SRC_DIR="tests" usage() diff --git a/tests/shared/Makefile b/tests/shared/Makefile deleted file mode 100644 index 2e6aa718446171..00000000000000 --- a/tests/shared/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# -# Copyright (c) 2003-2005 Silicon Graphics, Inc. All Rights Reserved. -# - -TOPDIR = ../.. -include $(TOPDIR)/include/builddefs -include $(TOPDIR)/include/buildgrouplist - -SHARED_DIR = shared -TARGET_DIR = $(PKG_LIB_DIR)/$(TESTS_DIR)/$(SHARED_DIR) -DIRT = group.list - -default: $(DIRT) - -include $(BUILDRULES) - -install: default - $(INSTALL) -m 755 -d $(TARGET_DIR) - $(INSTALL) -m 755 $(TESTS) $(TARGET_DIR) - $(INSTALL) -m 644 group.list $(TARGET_DIR) - $(INSTALL) -m 644 $(OUTFILES) $(TARGET_DIR) - -# Nothing. -install-dev install-lib: