Package: dart / 6.12.1+dfsg4-12

disable-skeltest-for-armhf-mips-x86.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Description: skel test fail hard on armhf, mipsel and hangs in i386
Author: Jose Luis Rivero <jrivero@osrfoundation.org>
Forwarded: no
Last-Update: 2022-01-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/unittests/unit/test_SkelParser.cpp
+++ b/unittests/unit/test_SkelParser.cpp
@@ -146,6 +146,7 @@
   world->step();
 }
 
+#if !defined(__arm__) && !defined(__mips__) && !defined(__i386__)
 //==============================================================================
 TEST(SkelParser, VariousShapes)
 {
@@ -158,6 +159,7 @@
   for (auto i = 0u; i < 100; ++i)
     world->step();
 }
+#endif
 
 //==============================================================================
 TEST(SkelParser, RigidAndSoftBodies)