fa5492787c
- Update to LVM2.2.02.175 - Use week dependency for lvm2-lockd on libdlm and sanlock - Rename/refresh patches: - display-dm-name-for-lv-name.diff to fate-309425_display-dm-name-for-lv-name.patch - fsadm-add-support-for-btrfs.patch to fate-31841_fsadm-add-support-for-btrfs.patch - dmeventd-fix-dso-name-wrong-compare.patch to bug-935623_dmeventd-fix-dso-name-wrong-compare.patch - lvm2-lvmetad.service-add-Also-lvm2-lvmetad.socket.patch to bug-960044_lvm2-lvmetad.service-add-Also-lvm2-lvmetad.socket.patch - simplify-special-case-for-md-in-69-dm-lvm-metadata.patch to bug-1012973_simplify-special-case-for-md-in-69-dm-lvm-metadata.patch - Drop resource agents for clvmd and cmirror (bsc#1058680) - clvmd.ocf - cmirrord.ocf - Drop all patches for cmirror (bsc#1058661) - cluster_support_mirrord_log.diff - cmirrord_improvment_performance.patch - lvconvert-cluster-mirrored-disk-failed.patch - improve-mirror-legs-on-different-tag-pvs.patch - make-mirror-legs-on-different-tag-pvs.patch - use-mirrortype-asdefault-whenclvmdrunning.patch - lvm2-testsuite.patch - Update to LVM2.2.02.175 - Use week dependency for lvm2-lockd on libdlm and sanlock - Rename/refresh patches: - display-dm-name-for-lv-name.diff to fate-309425_display-dm-name-for-lv-name.patch - fsadm-add-support-for-btrfs.patch to fate-31841_fsadm-add-support-for-btrfs.patch - dmeventd-fix-dso-name-wrong-compare.patch to bug-935623_dmeventd-fix-dso-name-wrong-compare.patch - lvm2-lvmetad.service-add-Also-lvm2-lvmetad.socket.patch to bug-960044_lvm2-lvmetad.service-add-Also-lvm2-lvmetad.socket.patch - simplify-special-case-for-md-in-69-dm-lvm-metadata.patch to bug-1012973_simplify-special-case-for-md-in-69-dm-lvm-metadata.patch OBS-URL: https://build.opensuse.org/request/show/535958 OBS-URL: https://build.opensuse.org/package/show/Base:System/lvm2?expand=0&rev=204
45 lines
1.4 KiB
Diff
45 lines
1.4 KiB
Diff
commit 0402acbbb9f8f6066a3f7899e8cc3ae72b84ee20
|
|
Author: Zhilong Liu <zlliu@suse.com>
|
|
Date: Wed Dec 7 02:43:10 2016 -0500
|
|
|
|
add a new test package named lvm2-testsuite(bnc#950089)
|
|
+ lvm2-testsuite.patch
|
|
Currently this new package is not enabled by default.
|
|
Please set enable_testsuite to 1 to turn it on in the
|
|
spec file.
|
|
|
|
Eric:
|
|
|
|
This patch is to solve the following obs building error:
|
|
|
|
"""
|
|
E: arch-dependent-file-in-usr-share (Badness: 590) /usr/share/lvm2-testsuite/api/lvtest.t
|
|
...
|
|
"""
|
|
|
|
So, move the *.t binary into /usr/lib/lvm2-testsuite/.
|
|
|
|
Signed-off-by: Zhilong Liu <zlliu@suse.com>
|
|
|
|
diff --git a/test/Makefile.in b/test/Makefile.in
|
|
index f152868..f0845d7 100644
|
|
--- a/test/Makefile.in
|
|
+++ b/test/Makefile.in
|
|
@@ -224,7 +224,7 @@ install: .tests-stamp lib/paths-installed
|
|
$(INSTALL_DATA) shell/*.sh $(DATADIR)/shell
|
|
$(INSTALL_DATA) api/*.sh $(DATADIR)/api
|
|
$(INSTALL_DATA) lib/mke2fs.conf $(DATADIR)/lib
|
|
- $(INSTALL_PROGRAM) api/*.{t,py} $(DATADIR)/api
|
|
+ $(INSTALL_PROGRAM) api/*.py $(DATADIR)/api/
|
|
$(INSTALL_PROGRAM) dbus/*.py $(DATADIR)/dbus/
|
|
$(INSTALL_DATA) lib/paths-installed $(DATADIR)/lib/paths
|
|
cd lib && $(INSTALL_DATA) \
|
|
@@ -244,6 +244,7 @@ install: .tests-stamp lib/paths-installed
|
|
@cd $(EXECDIR) && for i in $(LIB_LINK_NOT); do \
|
|
echo "$(LN_S) -f not $$i"; \
|
|
$(LN_S) -f not $$i; done
|
|
+ $(INSTALL_PROGRAM) api/*.t $(EXECDIR)
|
|
$(INSTALL_PROGRAM) -D lib/runner $(bindir)/lvm2-testsuite
|
|
|
|
lib/should: lib/not
|