From 1d3b0870e29f16287320587a05edd2112cd942fe Mon Sep 17 00:00:00 2001 From: Glebs Ivanovskis Date: Thu, 30 Nov 2017 16:39:18 +0000 Subject: ....I..... [DEV-628] added test for configuration file parsing; extended mock collection with stat() mock working for files and stubs of opendir() and readdir() for future implementation --- Makefile.am | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 333c78c7f91..d59f52457a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -113,12 +113,19 @@ WRAP_IO_FUNCS = \ -Wl,--wrap=fclose \ -Wl,--wrap=fgets +WRAP_FS_FUNCS = \ + -Wl,--wrap=opendir \ + -Wl,--wrap=readdir \ + -Wl,--wrap=stat \ + -Wl,--wrap=__xstat + WRAP_EXIT = \ -Wl,--wrap=exit COMMON_WRAP_FUNCS = \ $(WRAP_DB_FUNCS) \ $(WRAP_IO_FUNCS) \ + $(WRAP_FS_FUNCS) \ $(WRAP_EXIT) tests: -- cgit v1.2.3