* [PATCH 1/3] btrfs-progs: add prerequisite mkfs.btrfs for test-cli
@ 2018-02-08 5:08 Gu Jinxiang
2018-02-08 5:08 ` [PATCH 2/3] btrfs-progs: add prerequisite btrfs-image for test-fuzz Gu Jinxiang
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Gu Jinxiang @ 2018-02-08 5:08 UTC (permalink / raw)
To: linux-btrfs
Since tests/cli-tests/002-balance-full-no-filters/test.sh need
the mkfs.btrfs for prerequisite.
So add the dependency in Makefile.
Signed-off-by: Gu Jinxiang <gujx@cn.fujitsu.com>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 00e2137..034c943 100644
--- a/Makefile
+++ b/Makefile
@@ -315,7 +315,7 @@ test-fuzz: btrfs
@echo " [TEST] fuzz-tests.sh"
$(Q)bash tests/fuzz-tests.sh
-test-cli: btrfs
+test-cli: btrfs mkfs.btrfs
@echo " [TEST] cli-tests.sh"
$(Q)bash tests/cli-tests.sh
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/3] btrfs-progs: add prerequisite btrfs-image for test-fuzz
2018-02-08 5:08 [PATCH 1/3] btrfs-progs: add prerequisite mkfs.btrfs for test-cli Gu Jinxiang
@ 2018-02-08 5:08 ` Gu Jinxiang
2018-02-08 5:08 ` [PATCH 3/3] btrfs-progs: add prerequisite btrfs-convert for test-misc Gu Jinxiang
2018-02-08 14:11 ` [PATCH 1/3] btrfs-progs: add prerequisite mkfs.btrfs for test-cli David Sterba
2 siblings, 0 replies; 4+ messages in thread
From: Gu Jinxiang @ 2018-02-08 5:08 UTC (permalink / raw)
To: linux-btrfs
Since tests/fuzz-tests/002-simple-image/test.sh need
the btrfs-image for prerequisite.
So add the dependency in Makefile.
Signed-off-by: Gu Jinxiang <gujx@cn.fujitsu.com>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 034c943..9299411 100644
--- a/Makefile
+++ b/Makefile
@@ -311,7 +311,7 @@ test-mkfs: btrfs mkfs.btrfs
@echo " [TEST] mkfs-tests.sh"
$(Q)bash tests/mkfs-tests.sh
-test-fuzz: btrfs
+test-fuzz: btrfs btrfs-image
@echo " [TEST] fuzz-tests.sh"
$(Q)bash tests/fuzz-tests.sh
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 3/3] btrfs-progs: add prerequisite btrfs-convert for test-misc
2018-02-08 5:08 [PATCH 1/3] btrfs-progs: add prerequisite mkfs.btrfs for test-cli Gu Jinxiang
2018-02-08 5:08 ` [PATCH 2/3] btrfs-progs: add prerequisite btrfs-image for test-fuzz Gu Jinxiang
@ 2018-02-08 5:08 ` Gu Jinxiang
2018-02-08 14:11 ` [PATCH 1/3] btrfs-progs: add prerequisite mkfs.btrfs for test-cli David Sterba
2 siblings, 0 replies; 4+ messages in thread
From: Gu Jinxiang @ 2018-02-08 5:08 UTC (permalink / raw)
To: linux-btrfs
Since tests/misc-tests/005-convert-progress-thread-crash/test.sh need
the btrfs-convert for prerequisite.
So add the dependency in Makefile.
Signed-off-by: Gu Jinxiang <gujx@cn.fujitsu.com>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 9299411..7ccba62 100644
--- a/Makefile
+++ b/Makefile
@@ -303,7 +303,7 @@ test-fsck: btrfs btrfs-image btrfs-corrupt-block mkfs.btrfs btrfstune
$(Q)bash tests/fsck-tests.sh
test-misc: btrfs btrfs-image btrfs-corrupt-block mkfs.btrfs btrfstune fssum \
- btrfs-zero-log btrfs-find-root btrfs-select-super
+ btrfs-zero-log btrfs-find-root btrfs-select-super btrfs-convert
@echo " [TEST] misc-tests.sh"
$(Q)bash tests/misc-tests.sh
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/3] btrfs-progs: add prerequisite mkfs.btrfs for test-cli
2018-02-08 5:08 [PATCH 1/3] btrfs-progs: add prerequisite mkfs.btrfs for test-cli Gu Jinxiang
2018-02-08 5:08 ` [PATCH 2/3] btrfs-progs: add prerequisite btrfs-image for test-fuzz Gu Jinxiang
2018-02-08 5:08 ` [PATCH 3/3] btrfs-progs: add prerequisite btrfs-convert for test-misc Gu Jinxiang
@ 2018-02-08 14:11 ` David Sterba
2 siblings, 0 replies; 4+ messages in thread
From: David Sterba @ 2018-02-08 14:11 UTC (permalink / raw)
To: Gu Jinxiang; +Cc: linux-btrfs
On Thu, Feb 08, 2018 at 01:08:56PM +0800, Gu Jinxiang wrote:
> Since tests/cli-tests/002-balance-full-no-filters/test.sh need
> the mkfs.btrfs for prerequisite.
> So add the dependency in Makefile.
>
> Signed-off-by: Gu Jinxiang <gujx@cn.fujitsu.com>
1-3 applied, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-02-08 14:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-08 5:08 [PATCH 1/3] btrfs-progs: add prerequisite mkfs.btrfs for test-cli Gu Jinxiang
2018-02-08 5:08 ` [PATCH 2/3] btrfs-progs: add prerequisite btrfs-image for test-fuzz Gu Jinxiang
2018-02-08 5:08 ` [PATCH 3/3] btrfs-progs: add prerequisite btrfs-convert for test-misc Gu Jinxiang
2018-02-08 14:11 ` [PATCH 1/3] btrfs-progs: add prerequisite mkfs.btrfs for test-cli David Sterba
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).