2018-02-02 18:39:17 +03:00
# Copyright (C) 2011-2018 Red Hat, Inc. All rights reserved.
2011-11-21 01:43:20 +04:00
#
# This file is part of LVM2.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2011-11-21 01:43:20 +04:00
2018-02-02 18:39:17 +03:00
UNIT_SOURCE = \
test/unit/bcache_t.c \
2018-02-05 19:04:23 +03:00
# test/unit/run.c
# test/unit/bitset_t.c\
# test/unit/config_t.c\
# test/unit/dmlist_t.c\
# test/unit/dmstatus_t.c\
# test/unit/matcher_t.c\
# test/unit/percent_t.c\
# test/unit/string_t.c\
2018-02-02 18:39:17 +03:00
UNIT_OBJECTS = $( UNIT_SOURCE:%.c= %.o)
2018-02-05 19:04:23 +03:00
UNIT_LDLIBS += $( LVMINTERNAL_LIBS) -ldevmapper -laio
2018-02-02 18:39:17 +03:00
test/unit/run : $( UNIT_OBJECTS ) libdm /libdevmapper .$( LIB_SUFFIX ) lib /liblvm -internal .a
2018-02-05 19:04:23 +03:00
@echo " [LD] $@ "
$( Q) $( CC) $( CFLAGS) $( LDFLAGS) $( EXTRA_EXEC_LDFLAGS) -L$( top_builddir) /libdm \
2018-02-02 18:39:17 +03:00
-o $@ $( UNIT_OBJECTS) $( UNIT_LDLIBS)
2015-11-27 12:54:57 +03:00
2018-02-05 19:04:23 +03:00
.PHONEY : unit -test
2018-02-02 18:39:17 +03:00
unit-test : test /unit /run
2011-11-23 16:21:41 +04:00
@echo Running unit tests
2018-02-02 18:39:17 +03:00
LD_LIBRARY_PATH = libdm test/unit/run