From 507a4ec87b04afe16a4885c3af8cd89506be3b1a Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 5 Jul 2013 11:16:08 -0700 Subject: [PATCH] qa: move fs test binary into workunits dir so teuthology can build it Teuthology does a make in the workunits dir, so move this in there. Signed-off-by: Sage Weil --- qa/Makefile | 2 +- qa/workunits/Makefile | 2 +- qa/workunits/fs/.gitignore | 1 + qa/{ => workunits}/fs/Makefile | 0 qa/{ => workunits}/fs/test_o_trunc.c | 0 5 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 qa/workunits/fs/.gitignore rename qa/{ => workunits}/fs/Makefile (100%) rename qa/{ => workunits}/fs/test_o_trunc.c (100%) diff --git a/qa/Makefile b/qa/Makefile index c4efe2c9f3a..ad655b7e743 100644 --- a/qa/Makefile +++ b/qa/Makefile @@ -1,4 +1,4 @@ -DIRS= workunits btrfs fs +DIRS= workunits btrfs all: for d in $(DIRS) ; do ( cd $$d ; $(MAKE) all ) ; done diff --git a/qa/workunits/Makefile b/qa/workunits/Makefile index d79ecd7f8b1..f75f5dfd4a5 100644 --- a/qa/workunits/Makefile +++ b/qa/workunits/Makefile @@ -1,4 +1,4 @@ -DIRS = direct_io +DIRS = direct_io fs all: for d in $(DIRS) ; do ( cd $$d ; $(MAKE) all ) ; done diff --git a/qa/workunits/fs/.gitignore b/qa/workunits/fs/.gitignore new file mode 100644 index 00000000000..f7f7a0614fa --- /dev/null +++ b/qa/workunits/fs/.gitignore @@ -0,0 +1 @@ +test_o_trunc diff --git a/qa/fs/Makefile b/qa/workunits/fs/Makefile similarity index 100% rename from qa/fs/Makefile rename to qa/workunits/fs/Makefile diff --git a/qa/fs/test_o_trunc.c b/qa/workunits/fs/test_o_trunc.c similarity index 100% rename from qa/fs/test_o_trunc.c rename to qa/workunits/fs/test_o_trunc.c -- 2.47.3