aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2023-10-22 22:21:54 -0400
committerTheodore Ts'o <tytso@mit.edu>2023-10-22 22:21:54 -0400
commitf78662f9cf4041d94c1bf5fb4aaa831319561e0f (patch)
tree92dc0bde4d12c7d4089688f9a69f92eb5cd2bc11
parent7543f545fb814f79e9f1815241233ff0fe686d8a (diff)
downloadxfstests-bld-f78662f9cf4041d94c1bf5fb4aaa831319561e0f.tar.gz
qemu-xfstests: add a qemu-xfstests script as an alias for kvm-xfstests
Now that xfstests-bld is growing more and more support for non-x86 architectures (without using android-xfstests) the name "kvm-xfstests" is getting a bit obsolete, since KVM is an x86-specific feature. So add the qemu-xfstests script as an acknowledgement to this fact. We still have the string "kvm" buried in far too many places, it's probably not worth the pain of changing it, but we can at least acknowledge this in the top-level user script. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--Makefile3
-rw-r--r--run-fstests/qemu-xfstests.sh.in7
2 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d1570df2..afbc0155 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
SCRIPTS = android-xfstests \
gce-xfstests \
- kvm-xfstests
+ kvm-xfstests \
+ qemu-xfstests
KBUILD_SCRIPTS = kbuild kbuild32 install-kconfig
diff --git a/run-fstests/qemu-xfstests.sh.in b/run-fstests/qemu-xfstests.sh.in
new file mode 100644
index 00000000..9329f456
--- /dev/null
+++ b/run-fstests/qemu-xfstests.sh.in
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+DIR=@DIR@
+
+KVM_XFSTESTS_DIR=$DIR/run-fstests
+export KVM_XFSTESTS_DIR
+exec $KVM_XFSTESTS_DIR/kvm-xfstests "$@"