File: disable-skeltest-for-armhf-mips-x86.patch

package info (click to toggle)
dart 6.12.1%2Bdfsg4-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 57,000 kB
  • sloc: cpp: 269,461; python: 3,911; xml: 1,273; sh: 404; makefile: 30
file content (24 lines) | stat: -rw-r--r-- 747 bytes parent folder | 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)