[PATCH 5/6] fs-tests: integck: include the common mtd-utils header
Artem Bityutskiy
dedekind1 at gmail.com
Fri Apr 8 11:16:49 EDT 2011
From: Artem Bityutskiy <Artem.Bityutskiy at nokia.com>
Include the commong mtd-utils "common.h" header in integck test to
make it possible to use shared macros.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy at nokia.com>
---
tests/fs-tests/integrity/Makefile | 4 +++-
tests/fs-tests/integrity/integck.c | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/tests/fs-tests/integrity/Makefile b/tests/fs-tests/integrity/Makefile
index a35f4d0..364a732 100644
--- a/tests/fs-tests/integrity/Makefile
+++ b/tests/fs-tests/integrity/Makefile
@@ -3,7 +3,9 @@ ifeq ($(origin CC),default)
CC = gcc
endif
-CFLAGS := $(CFLAGS) -Wall -g -O2 -I../lib
+COMMON_HEADERS_DIR := ../../../include
+
+CFLAGS := $(CFLAGS) -Wall -g -O2 -I../lib -I$(COMMON_HEADERS_DIR)
LDFLAGS := $(LDFLAGS)
diff --git a/tests/fs-tests/integrity/integck.c b/tests/fs-tests/integrity/integck.c
index 155b619..ed32b52 100644
--- a/tests/fs-tests/integrity/integck.c
+++ b/tests/fs-tests/integrity/integck.c
@@ -30,9 +30,11 @@
#include <limits.h>
#include <dirent.h>
#include <sys/mman.h>
-
#include "tests.h"
+#define PROGRAM_NAME "integck"
+#include "common.h"
+
/* Structures to store data written to the test file system,
so that we can check whether the file system is correct. */
--
1.7.2.3
More information about the linux-mtd
mailing list