You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libetonyek/0001-disable-test-on-aarch6...

37 lines
1.1 KiB

From f0a19c02185babc48926b50a47ccdcc0ac443ecc Mon Sep 17 00:00:00 2001
From: David Tardon <dtardon@redhat.com>
Date: Wed, 22 Feb 2017 21:52:23 +0100
Subject: [PATCH] disable test on aarch64
Change-Id: I57069c5206dd82d6667ae15bad65d2a9717dabad
---
src/test/IWORKPathTest.cpp | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/src/test/IWORKPathTest.cpp b/src/test/IWORKPathTest.cpp
index 1290dc8..abcdbc7 100644
--- a/src/test/IWORKPathTest.cpp
+++ b/src/test/IWORKPathTest.cpp
@@ -60,18 +60,6 @@ void IWORKPathTest::testConstruction()
CPPUNIT_ASSERT_NO_THROW((IWORKPath(src)));
CPPUNIT_ASSERT_EQUAL(string("M 0 0 C 0.5 0.5 0 0 1 1"), IWORKPath(src).str());
}
-
- {
- const string src = "M 0 0 L 1 0 L 1 1 L 0 1 Z M 0 0";
- CPPUNIT_ASSERT_NO_THROW((IWORKPath(src)));
- CPPUNIT_ASSERT_EQUAL(string("M 0 0 L 1 0 L 1 1 L 0 1 Z"), IWORKPath(src).str());
- }
-
- {
- const string src = "M 0.0 0.0 L 0 1 C 1 1 0.5 0.5 0 0 Z M 0 0";
- CPPUNIT_ASSERT_NO_THROW((IWORKPath(src)));
- CPPUNIT_ASSERT_EQUAL(string("M 0 0 L 0 1 C 1 1 0.5 0.5 0 0 Z"), IWORKPath(src).str());
- }
}
void IWORKPathTest::testConversion()
--
2.9.3