[Libreoffice-commits] libvisio.git: 2 commits - src/test

David Tardon dtardon at redhat.com
Mon Jan 18 04:56:30 PST 2016


 src/test/Makefile.am    |    3 +++
 src/test/importtest.cpp |    4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

New commits:
commit c933df45a873e566c6ce4e5de5f829e64eb892f5
Author: David Tardon <dtardon at redhat.com>
Date:   Mon Jan 18 13:55:07 2016 +0100

    use UTC
    
    Change-Id: I03b40e2746ad90f2c7cf09560c218aab2a18090d

diff --git a/src/test/Makefile.am b/src/test/Makefile.am
index 23049b5..48ffaa4 100644
--- a/src/test/Makefile.am
+++ b/src/test/Makefile.am
@@ -30,6 +30,6 @@ EXTRA_DIST = \
 	     $(test_SOURCES)
 
 # ImportTest::testVsdMetadataTitleUtf8 checks formatted date string
-AM_TESTS_ENVIRONMENT = TZ=CET; export TZ;
+AM_TESTS_ENVIRONMENT = TZ=UTC; export TZ;
 
 TESTS = test
diff --git a/src/test/importtest.cpp b/src/test/importtest.cpp
index e05b3c1..32fb185 100644
--- a/src/test/importtest.cpp
+++ b/src/test/importtest.cpp
@@ -242,8 +242,8 @@ void ImportTest::testVsdMetadataTitleUtf8()
   // Test the case when the string is UTF-8 encoded already in the file.
   assertXPath(m_doc, "/document/setDocumentMetaData", "title", "mytitle\xC3\xA9\xC3\xA1\xC5\x91\xC5\xB1");
   // Test <dcterms:created> and <dcterms:modified>.
-  assertXPath(m_doc, "/document/setDocumentMetaData", "creation-date", "2014-11-26T09:24:56Z");
-  assertXPath(m_doc, "/document/setDocumentMetaData", "date", "2014-11-26T09:24:56Z");
+  assertXPath(m_doc, "/document/setDocumentMetaData", "creation-date", "2014-11-26T08:24:56Z");
+  assertXPath(m_doc, "/document/setDocumentMetaData", "date", "2014-11-26T08:24:56Z");
 }
 
 void ImportTest::testVsdUserDefinedMetadata()
commit a97d30ad693374deab404ec31fe00665882cc949
Author: David Tardon <dtardon at redhat.com>
Date:   Mon Jan 18 13:53:19 2016 +0100

    tdf#92396 test must be run in specific time zone
    
    Change-Id: Idc9d85ae8c5c1a6eccca7e830baa05a867ac4402

diff --git a/src/test/Makefile.am b/src/test/Makefile.am
index 59d3419..23049b5 100644
--- a/src/test/Makefile.am
+++ b/src/test/Makefile.am
@@ -29,4 +29,7 @@ EXTRA_DIST = \
 	     data/dwg.vsdx \
 	     $(test_SOURCES)
 
+# ImportTest::testVsdMetadataTitleUtf8 checks formatted date string
+AM_TESTS_ENVIRONMENT = TZ=CET; export TZ;
+
 TESTS = test


More information about the Libreoffice-commits mailing list