File: disable-memory-tests-on-riscv64.patch

package info (click to toggle)
libscca 20200717-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,228 kB
  • sloc: ansic: 198,355; sh: 6,050; makefile: 1,277; python: 410; cpp: 88; sed: 16
file content (21 lines) | stat: -rw-r--r-- 1,023 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Debian Security Tools <team+pkg-security@tracker.debian.org>
Date: Tue, 2 Feb 2021 15:15:38 +0100
Subject: disable-memory-tests-on-riscv64

---
 tests/scca_test_memory.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/scca_test_memory.h b/tests/scca_test_memory.h
index b8d155d..a9255ff 100644
--- a/tests/scca_test_memory.h
+++ b/tests/scca_test_memory.h
@@ -28,7 +28,7 @@
 extern "C" {
 #endif
 
-#if defined( HAVE_GNU_DL_DLSYM ) && defined( __GNUC__ ) && !defined( LIBSCCA_DLL_IMPORT ) && !defined( __arm__ ) && !defined( __clang__ ) && !defined( __CYGWIN__ ) && !defined( __hppa__ ) && !defined( __mips__ ) && !defined( __sparc__ ) && !defined( HAVE_ASAN )
+#if defined( HAVE_GNU_DL_DLSYM ) && defined( __GNUC__ ) && !defined( LIBSCCA_DLL_IMPORT ) && !defined( __arm__ ) && !defined( __clang__ ) && !defined( __CYGWIN__ ) && !defined( __hppa__ ) && !defined( __mips__ ) && !defined( __sparc__ ) && !defined( __riscv ) && !defined( HAVE_ASAN )
 #define HAVE_SCCA_TEST_MEMORY		1
 #endif