Skip to content

Commit 6743c03

Browse files
committed
rs: disable failing hppa test due to upstream bug
1 parent 5766002 commit 6743c03

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

capstone-rs/src/test.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1916,7 +1916,9 @@ fn test_arch_hppa() {
19161916
Some(Endian::Big),
19171917
&[],
19181918
&[
1919-
("ldsid", b"\x00\x20\x50\xa2"),
1919+
// Upstream bug: access to uninitialized value
1920+
// https://github.com/capstone-engine/capstone/issues/2717
1921+
// ("ldsid", b"\x00\x20\x50\xa2"),
19201922
("mtsp", b"\x00\x01\x58\x20"),
19211923
],
19221924
);
@@ -1940,7 +1942,10 @@ fn test_arch_hppa_detail() {
19401942
Some(Endian::Big),
19411943
&[],
19421944
&[
1945+
// Upstream bug: access to uninitialized value
1946+
// https://github.com/capstone-engine/capstone/issues/2717
19431947
// ldsid (sr1, r1), rp
1948+
/*
19441949
DII::new(
19451950
"ldsid",
19461951
b"\x00\x20\x50\xa2",
@@ -1959,6 +1964,7 @@ fn test_arch_hppa_detail() {
19591964
},
19601965
],
19611966
),
1967+
*/
19621968
// mtsp r1, sr1
19631969
DII::new(
19641970
"mtsp",

0 commit comments

Comments
 (0)