From 4f2c9e8ade35ec00c6c0aec9d08be4a21354bb61 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Thu, 12 Oct 2023 16:33:14 +0200 Subject: [PATCH] btrfs-progs: tests: do not run test-convert under test target The convert tests take a long time and are not necessary for quick test rounds under the convenience target 'make test'. We still run the tests in CI. Signed-off-by: David Sterba --- Makefile | 2 +- tests/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5da9acbb..edc6675d 100644 --- a/Makefile +++ b/Makefile @@ -574,7 +574,7 @@ test-array: array-test done \ } -test: test-check test-check-lowmem test-mkfs test-misc test-cli test-convert test-fuzz +test: test-check test-check-lowmem test-mkfs test-misc test-cli test-fuzz testsuite: btrfs-corrupt-block btrfs-find-root btrfs-select-super fssum fsstress @echo "Export tests as a package" diff --git a/tests/Makefile b/tests/Makefile index 3a23d7e7..d8eab701 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -31,7 +31,7 @@ MAKEOPTS = --no-print-directory Q=$(Q) .PHONY: all .PHONY: FORCE -test: test-check test-check-lowmem test-mkfs test-misc test-cli test-convert test-fuzz +test: test-check test-check-lowmem test-mkfs test-misc test-cli test-fuzz test-convert: @echo " [TEST] convert-tests.sh"