File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -428,6 +428,7 @@ mod tests {
428
428
// ignored there.
429
429
#[ cfg_attr( target_arch = "arm" , ignore) ]
430
430
#[ cfg_attr( target_arch = "aarch64" , ignore) ]
431
+ #[ cfg_attr( target_arch = "riscv64" , ignore) ]
431
432
fn test_process_mask ( ) {
432
433
unsafe {
433
434
// Test to make sure that a signal mask does not get inherited.
Original file line number Diff line number Diff line change @@ -796,11 +796,11 @@ mod tests {
796
796
797
797
// Right now for CI this test is run in an emulator, and apparently the
798
798
// aarch64 emulator's sense of time is that we're still living in the
799
- // 70s.
799
+ // 70s. This is also true for riscv (also qemu)
800
800
//
801
801
// Otherwise let's assume that we're all running computers later than
802
802
// 2000.
803
- if !cfg ! ( target_arch = "aarch64" ) {
803
+ if !cfg ! ( target_arch = "aarch64" ) && ! cfg ! ( target_arch = "riscv64" ) {
804
804
assert ! ( a > thirty_years) ;
805
805
}
806
806
You can’t perform that action at this time.
0 commit comments