44 lines
1.5 KiB
Diff
44 lines
1.5 KiB
Diff
|
From 6872c0d2fd2038b366cc8086588a272465d6a553 Mon Sep 17 00:00:00 2001
|
||
|
From: Wang Dong <dongdwdw@linux.vnet.ibm.com>
|
||
|
Date: Wed, 26 Oct 2016 04:22:49 +0200
|
||
|
Subject: [PATCH 61/75] libparted/dasd: add test cases for the new fdasd
|
||
|
functions
|
||
|
|
||
|
The test case uses a temporary file in libparted/tests under
|
||
|
Check framwork. It can be issued by "make check" in the test dir.
|
||
|
|
||
|
Signed-off-by: Wang Dong <dongdwdw@linux.vnet.ibm.com>
|
||
|
Signed-off-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
|
||
|
Signed-off-by: Brian C. Lane <bcl@redhat.com>
|
||
|
---
|
||
|
libparted/tests/Makefile.am | 5 +++--
|
||
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/libparted/tests/Makefile.am b/libparted/tests/Makefile.am
|
||
|
index c7c10a9..9689fb3 100644
|
||
|
--- a/libparted/tests/Makefile.am
|
||
|
+++ b/libparted/tests/Makefile.am
|
||
|
@@ -3,9 +3,9 @@
|
||
|
#
|
||
|
# This file may be modified and/or distributed without restriction.
|
||
|
|
||
|
-TESTS = t1000-label.sh t2000-disk.sh t2100-zerolen.sh t3000-symlink.sh
|
||
|
+TESTS = t1000-label.sh t2000-disk.sh t2100-zerolen.sh t3000-symlink.sh t4000-volser.sh
|
||
|
EXTRA_DIST = $(TESTS)
|
||
|
-check_PROGRAMS = label disk zerolen symlink
|
||
|
+check_PROGRAMS = label disk zerolen symlink volser
|
||
|
AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
|
||
|
|
||
|
LDADD = \
|
||
|
@@ -23,6 +23,7 @@ label_SOURCES = common.h common.c label.c
|
||
|
disk_SOURCES = common.h common.c disk.c
|
||
|
zerolen_SOURCES = common.h common.c zerolen.c
|
||
|
symlink_SOURCES = common.h common.c symlink.c
|
||
|
+volser_SOURCES = common.h common.c volser.c
|
||
|
|
||
|
# Arrange to symlink to tests/init.sh.
|
||
|
CLEANFILES = init.sh
|
||
|
--
|
||
|
2.9.3
|
||
|
|