mirror of https://gitee.com/openkylin/ldb.git
apply patches
This commit is contained in:
commit
2adb4bfa2c
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<refentry id="ldb.3">
|
||||
<refentryinfo><date>2015-04-26</date></refentryinfo>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle>ldb</refentrytitle>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<refentry id="ldbadd.1">
|
||||
<refentryinfo><date>2015-04-26</date></refentryinfo>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle>ldbadd</refentrytitle>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<refentry id="ldbdel.1">
|
||||
<refentryinfo><date>2015-04-26</date></refentryinfo>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle>ldbdel</refentrytitle>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<refentry id="ldbedit.1">
|
||||
<refentryinfo><date>2015-04-26</date></refentryinfo>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle>ldbedit</refentrytitle>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<refentry id="ldbmodify.1">
|
||||
<refentryinfo><date>2015-04-26</date></refentryinfo>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle>ldbmodify</refentrytitle>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<refentry id="ldbrename.1">
|
||||
<refentryinfo><date>2015-04-26</date></refentryinfo>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle>ldbrename</refentrytitle>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<refentry id="ldbsearch.1">
|
||||
<refentryinfo><date>2015-04-26</date></refentryinfo>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle>ldbsearch</refentrytitle>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import os
|
||||
from unittest import TestCase
|
||||
from unittest import TestCase, skipIf
|
||||
import shutil
|
||||
from subprocess import check_output
|
||||
import ldb
|
||||
|
@ -176,6 +176,8 @@ class GUIDIndexAndPackFormatTests(TestCase):
|
|||
|
||||
# Check a database with V1 format with GUID indexing enabled is repacked
|
||||
# with version 2 format.
|
||||
@skipIf(os.environ.get('DEB_HOST_ARCH', 'unknown') in ['mips64el', 'ppc64el', 'ia64', 'ppc64'],
|
||||
"Premade v1 unreadable on arch %s" % os.environ.get('DEB_HOST_ARCH', 'unknown'))
|
||||
def test_guid_indexed_v1_db(self):
|
||||
self.setup_premade_v1_db()
|
||||
|
||||
|
|
Loading…
Reference in New Issue