public inbox for fstests@vger.kernel.org
 help / color / mirror / Atom feed
From: Dave Chinner <david@fromorbit.com>
To: fstests@vger.kernel.org
Subject: [PATCH 1/5] fstests: remove setup script
Date: Fri,  7 Mar 2025 08:34:46 +1100	[thread overview]
Message-ID: <20250306213921.3769440-2-david@fromorbit.com> (raw)
In-Reply-To: <20250306213921.3769440-1-david@fromorbit.com>

From: Dave Chinner <dchinner@redhat.com>

THere is a script that will echo the current setup of the fstests
directory. This is largely the same output as running 'check -n' to
do a dry-run outputs. Hence this script is redundant, not likely to
be widely used and is easily replaced with check itself. Remove it.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
 setup | 81 -----------------------------------------------------------
 1 file changed, 81 deletions(-)
 delete mode 100755 setup

diff --git a/setup b/setup
deleted file mode 100755
index 375a54c98..000000000
--- a/setup
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/bin/bash
-# SPDX-License-Identifier: GPL-2.0
-# Copyright (c) 2003-2004 Silicon Graphics, Inc.  All Rights Reserved.
-#
-usage()
-{
-
-	echo "Usage: $0 [options]"'
-
-	-s section	run only specified section(s) from config file
-	-S section	exclude the specified section from the config file
-'
-	exit 0
-}
-
-while [ $# -gt 0 ]; do
-	case "$1" in
-	-\? | -h | --help) usage ;;
-	-s)	RUN_SECTION="$RUN_SECTION $2"; shift ;;
-	-S)	EXCLUDE_SECTION="$EXCLUDE_SECTION $2"; shift ;;
-	*)	usage ;;
-	esac
-	shift
-done
-
-if ! . ./common/config
-then
-    echo "check: failed to source common/config"
-    exit 1
-fi
-
-for section in $HOST_OPTIONS_SECTIONS; do
-	OLD_FSTYP=$FSTYP
-	OLD_MOUNT_OPTIONS=$MOUNT_OPTIONS
-	get_next_config $section
-
-	# Do we need to run only some sections ?
-	if [ ! -z "$RUN_SECTION" ]; then
-		skip=true
-		for s in $RUN_SECTION; do
-			if [ $section == $s ]; then
-				skip=false
-				break;
-			fi
-		done
-		if $skip; then
-			continue
-		fi
-	fi
-
-	# Did this section get excluded?
-	if [ ! -z "$EXCLUDE_SECTION" ]; then
-		skip=false
-		for s in $EXCLUDE_SECTION; do
-			if [ $section == $s ]; then
-				skip=true
-				break;
-			fi
-		done
-		if $skip; then
-			continue
-		fi
-	fi
-
-	[ "$USE_EXTERNAL"    = yes ] || USE_EXTERNAL=no
-	[ "$USE_LBD_PATCH"   = yes ] || USE_LBD_PATCH=no
-	[ "$LARGE_SCRATCH_DEV"  = yes ] || LARGE_SCRATCH_DEV=no
-	[ "$USE_ATTR_SECURE" = yes ] || USE_ATTR_SECURE=no
-	[ -z "$FSTYP" ] && FSTYP="xfs"
-
-	cat <<EOF
-SECTION       -- $section
-
-TEST: DIR=$TEST_DIR DEV=$TEST_DEV rt=[$TEST_RTDEV] log=[$TEST_LOGDEV]
-TAPE: dev=[$TAPE_DEV] rmt=[$RMT_TAPE_DEV] rmtirix=[$RMT_TAPE_USER@$RMT_IRIXTAPE_DEV]
-SCRATCH: MNT=$SCRATCH_MNT DEV=$SCRATCH_DEV rt=[$SCRATCH_RTDEV] log=[$SCRATCH_LOGDEV]
-VARIABLES: external=$USE_EXTERNAL largeblk=$USE_LBD_PATCH fstyp=$FSTYP
-	   large_scratch_dev=$LARGE_SCRATCH_DEV attrsecure=$USE_ATTR_SECURE
---------
-EOF
-done
-- 
2.45.2


  reply	other threads:[~2025-03-06 21:39 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-06 21:34 [PATCH 0/5] fstests: remove old SGI QE scripts Dave Chinner
2025-03-06 21:34 ` Dave Chinner [this message]
2025-03-06 21:34 ` [PATCH 2/5] fstests: remove old soak script Dave Chinner
2025-03-06 21:34 ` [PATCH 3/5] fstests: remove crash script Dave Chinner
2025-03-06 21:34 ` [PATCH 4/5] fstests: remove tools/auto-qa Dave Chinner
2025-03-06 21:34 ` [PATCH 5/5] fstests: remove old tools from tools directory Dave Chinner
2025-03-06 22:59 ` [PATCH 0/5] fstests: remove old SGI QE scripts Darrick J. Wong
2025-03-07  4:04 ` David Disseldorp

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250306213921.3769440-2-david@fromorbit.com \
    --to=david@fromorbit.com \
    --cc=fstests@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox