aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/gce-xfstests.md2
-rw-r--r--Documentation/kvm-quickstart.md2
-rw-r--r--fstests-bld/config2
-rw-r--r--fstests-bld/config.docker2
-rwxr-xr-xrun-fstests/get-results8
-rwxr-xr-xsetup-buildchroot2
-rwxr-xr-xtest-appliance/android-setup-partitions10
-rwxr-xr-xtest-appliance/files/usr/local/sbin/gce-shutdown16
-rwxr-xr-xtest-appliance/files/usr/local/sbin/get-results8
9 files changed, 26 insertions, 26 deletions
diff --git a/Documentation/gce-xfstests.md b/Documentation/gce-xfstests.md
index 6db819bb..d47d5cc4 100644
--- a/Documentation/gce-xfstests.md
+++ b/Documentation/gce-xfstests.md
@@ -103,7 +103,7 @@ The gce-xfstests and its associated helper scripts are part of the
xfstests-bld git repository. If you have not fetched it, you will
need to do so now:
- git clone git://git.kernel.org/pub/scm/fs/ext2/xfstests-bld.git fstests
+ git clone https://git.kernel.org/pub/scm/fs/ext2/xfstests-bld.git fstests
The gce-xfstests driver script needs to be customized so it can find
the "real" gce-xfstests script, which is located in
diff --git a/Documentation/kvm-quickstart.md b/Documentation/kvm-quickstart.md
index bbab1804..1c4b0985 100644
--- a/Documentation/kvm-quickstart.md
+++ b/Documentation/kvm-quickstart.md
@@ -9,7 +9,7 @@
32-bit test appliance here since it can support both 32-bit and
64-bit kernels.
- git clone git://git.kernel.org/pub/scm/fs/ext2/xfstests-bld.git fstests
+ git clone https://git.kernel.org/pub/scm/fs/ext2/xfstests-bld.git fstests
cd fstests
wget -O test-appliance/root_fs.img https://www.kernel.org/pub/linux/kernel/people/tytso/kvm-xfstests/root_fs.img.i386
diff --git a/fstests-bld/config b/fstests-bld/config
index f2f652de..5308027d 100644
--- a/fstests-bld/config
+++ b/fstests-bld/config
@@ -11,7 +11,7 @@ BLKTESTS_GIT=https://github.com/osandov/blktests.git
# Optional repositories, uncomment only if needed
#
-# IMA_EVM_UTILS_GIT=git://git.code.sf.net/p/linux-ima/ima-evm-utils.git
+# IMA_EVM_UTILS_GIT=https://git.code.sf.net/p/linux-ima/ima-evm-utils.git
# KEYUTILS_GIT=https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git
# STRESS_NG_GIT=https://github.com/ColinIanKing/stress-ng
# UTIL_LINUX_GIT=https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
diff --git a/fstests-bld/config.docker b/fstests-bld/config.docker
index 80328934..780b73a0 100644
--- a/fstests-bld/config.docker
+++ b/fstests-bld/config.docker
@@ -15,7 +15,7 @@ QUOTA_COMMIT=d2256ac2d44b0a5be9c0b49ce4ce8e5f6821ce2a
FSVERITY_GIT=https://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/fsverity-utils.git/
FSVERITY_COMMIT=ddc6bc9daeb79db932aa12edb85c7c2f4647472a
-IMA_EVM_UTILS_GIT=git://git.code.sf.net/p/linux-ima/ima-evm-utils.git
+IMA_EVM_UTILS_GIT=https://git.code.sf.net/p/linux-ima/ima-evm-utils.git
IMA_EVM_UTILS_COMMIT=00a0e66a14d3663edd9d37c8a01db6d182c88bdd # v1.3.2
BLKTESTS_GIT=https://github.com/tytso/blktests.git
diff --git a/run-fstests/get-results b/run-fstests/get-results
index ebaf701a..d899c339 100755
--- a/run-fstests/get-results
+++ b/run-fstests/get-results
@@ -21,12 +21,12 @@ then
IN=$(/bin/ls -t logs/log.* | head -1)
fi
-egrep "$REGEXP" "$IN"
+grep -E "$REGEXP" "$IN"
if test -n "$do_failure"; then
- b=$(egrep ^BEGIN "$IN" | wc -l)
- e=$(egrep ^END "$IN" | wc -l)
+ b=$(grep -E ^BEGIN "$IN" | wc -l)
+ e=$(grep -E ^END "$IN" | wc -l)
if test "$b" -gt "$e" ; then
- l=$(egrep ^BEGIN "$IN" | tail -n 1 | sed -e 's/BEGIN //')
+ l=$(grep -E ^BEGIN "$IN" | tail -n 1 | sed -e 's/BEGIN //')
echo " "
echo Missing END "$l"
fi
diff --git a/setup-buildchroot b/setup-buildchroot
index 6cf14b39..ff2b01f0 100755
--- a/setup-buildchroot
+++ b/setup-buildchroot
@@ -421,7 +421,7 @@ get_schroot_config()
then
(cd $SCHROOT_CHROOT_D ;
find . -maxdepth 1 -type f |
- egrep '^./[a-ZA-Z0-9_-][a-ZA-Z0-9_.-]*$' |
+ grep -E '^./[a-ZA-Z0-9_-][a-ZA-Z0-9_.-]*$' |
xargs cat)
fi
}
diff --git a/test-appliance/android-setup-partitions b/test-appliance/android-setup-partitions
index 2eb5fcab..1f4bb7ea 100755
--- a/test-appliance/android-setup-partitions
+++ b/test-appliance/android-setup-partitions
@@ -57,7 +57,7 @@ pprint_bytes()
get_partition_number()
{
local dev=$1
- echo $dev | egrep -o '[0-9]+$'
+ echo $dev | grep -E -o '[0-9]+$'
}
# Get the size in bytes of the given partition, as stored in the partition table
@@ -108,7 +108,7 @@ find_userdata_partition()
if [ ! -b $dev ]; then
die "Unable to find the userdata partition"
fi
- if ! echo $dev | egrep -q '[0-9]+$'; then
+ if ! echo $dev | grep -E -q '[0-9]+$'; then
die "Name of userdata device node has an unexpected format: \"$dev\""
fi
echo $dev
@@ -118,7 +118,7 @@ find_userdata_partition()
find_dm_device_by_name()
{
local dm_device_name=$1
- if ls /sys/class/block/ | egrep -q 'dm-[0-9]+$'; then
+ if ls /sys/class/block/ | grep -E -q 'dm-[0-9]+$'; then
for dir in /sys/class/block/dm-*; do
if [ $dm_device_name = $(< $dir/dm/name) ]; then
local dev=/dev/block/$(basename $dir)
@@ -173,8 +173,8 @@ validate_dm_device()
;;
esac
- if ! echo "$start_sector" | egrep -q '^[0-9]+$' ||
- ! echo "$raw_devno" | egrep -q '^[0-9]+:[0-9]+$'; then
+ if ! echo "$start_sector" | grep -E -q '^[0-9]+$' ||
+ ! echo "$raw_devno" | grep -E -q '^[0-9]+:[0-9]+$'; then
die "device-mapper device \"$dm_devname\" uses target with" \
"unsupported table format: ${table[@]}"
fi
diff --git a/test-appliance/files/usr/local/sbin/gce-shutdown b/test-appliance/files/usr/local/sbin/gce-shutdown
index 9ebe0080..0ca1d328 100755
--- a/test-appliance/files/usr/local/sbin/gce-shutdown
+++ b/test-appliance/files/usr/local/sbin/gce-shutdown
@@ -24,13 +24,13 @@ REGEXP_FAILURE="(^CMDLINE)|(^FSTEST)|(^MNTOPTS)|(^CPUS:)|(^MEM:)|(^BEGIN)|(^Fail
function gen_xfstests_summary()
{
- egrep "$REGEXP" < /results/runtests.log > /results/summary
+ grep -E "$REGEXP" < /results/runtests.log > /results/summary
- egrep "$REGEXP_FAILURE" < /results/runtests.log > /results/failures
+ grep -E "$REGEXP_FAILURE" < /results/runtests.log > /results/failures
printf "\n" >> /results/failures
sed -n -f /usr/local/lib/get-check-failures.sed < /results/runtests.log >> /results/failures
printf "\n" >> /results/failures
- egrep "$SYSLOG_RE_FAILURE" < /results/syslog >> /results/failures
+ grep -E "$SYSLOG_RE_FAILURE" < /results/syslog >> /results/failures
}
BLK_REGEXP="( Linux version )|(^CMDLINE)|(^FSTEST)|(^MNTOPTS)|(^CPUS:)|(^MEM:)|(^BEGIN)|(^MOUNT_OPTIONS)|(^MKFS_OPTIONS)|(^EXT4-fs error)|(WARNING)|(^_check_)|(inconsistent)|(^Shutdown reason)"
@@ -38,24 +38,24 @@ BLK_REGEXP_FAILURE="( Linux version )|(^CMDLINE)|(^FSTEST)|(^MNTOPTS)|(^CPUS:)|(
function gen_blktests_summary()
{
- run_tests=$(egrep "(\[failed\])|(\[passed\])" < /results/runtests.log | awk '{print $1}')
- failed_tests=$(egrep "\[failed\]" < /results/runtests.log | awk '{print $1}')
+ run_tests=$(grep -E "(\[failed\])|(\[passed\])" < /results/runtests.log | awk '{print $1}')
+ failed_tests=$(grep -E "\[failed\]" < /results/runtests.log | awk '{print $1}')
nr_run="$(echo $run_tests | wc -w)"
nr_failed="$(echo $failed_tests | wc -w)"
- egrep "$BLK_REGEXP" < /results/runtests.log > /results/summary
+ grep -E "$BLK_REGEXP" < /results/runtests.log > /results/summary
echo "Run: $(echo $run_tests)" >> /results/summary
echo "Failures: $(echo $failed_tests)" >> /results/summary
echo "Failed $nr_failed of $nr_run tests" >> /results/summary
grep ^END < /results/runtests.log >> /results/summary
- egrep "$BLK_REGEXP_FAILURE" < /results/runtests.log >> /results/failures
+ grep -E "$BLK_REGEXP_FAILURE" < /results/runtests.log >> /results/failures
echo "Run: $(echo $run_tests)" >> /results/failures
echo "Failures: $(echo $failed_tests)" >> /results/failures
echo "Failed $nr_failed of $nr_run tests" >> /results/failures
grep ^END < /results/runtests.log >> /results/failures
- egrep "$SYSLOG_RE_FAILURE" < /results/syslog >> /results/failures
+ grep -E "$SYSLOG_RE_FAILURE" < /results/syslog >> /results/failures
}
reason=$(gce_attribute shutdown_reason)
diff --git a/test-appliance/files/usr/local/sbin/get-results b/test-appliance/files/usr/local/sbin/get-results
index 7169b124..053c45c7 100755
--- a/test-appliance/files/usr/local/sbin/get-results
+++ b/test-appliance/files/usr/local/sbin/get-results
@@ -21,12 +21,12 @@ then
IN=-
fi
-egrep "$REGEXP" "$IN"
+grep -E "$REGEXP" "$IN"
if test -n "$do_failure"; then
- b=$(egrep ^BEGIN "$IN" | wc -l)
- e=$(egrep ^END "$IN" | wc -l)
+ b=$(grep -E ^BEGIN "$IN" | wc -l)
+ e=$(grep -E ^END "$IN" | wc -l)
if test "$b" -gt "$e" ; then
- l=$(egrep ^BEGIN "$IN" | tail -n 1 | sed -e 's/BEGIN //')
+ l=$(grep -E ^BEGIN "$IN" | tail -n 1 | sed -e 's/BEGIN //')
echo " "
echo Missing END "$l"
fi