Skip to content

Commit faa1a81

Browse files
committed
test: Fix some tests to run with musl
There were a few test cases to fix: * Dynamic libraries are not supported with MUSL right now, so all of those related test which force or require dylibs are ignored. * Looks like the default stack for MUSL is smaller than glibc, so a few stack allocations in benchmarks were boxed up (shouldn't have a perf impact). * Some small linkage tweaks here and there * Out-of-stack detection does not currently work with MUSL
1 parent 60f8f6b commit faa1a81

7 files changed

+16
-12
lines changed

src/test/bench/noise.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ impl Noise2DContext {
101101

102102
fn main() {
103103
let symbols = [' ', '░', '▒', '▓', '█', '█'];
104-
let mut pixels = [0f32; 256*256];
105-
let n2d = Noise2DContext::new();
104+
let mut pixels = Box::new([0f32; 256*256]);
105+
let n2d = Box::new(Noise2DContext::new());
106106

107107
for _ in 0..100 {
108108
for y in 0..256 {

src/test/bench/shootout-reverse-complement.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,17 @@ use std::ptr::copy;
5050
use std::thread;
5151

5252
struct Tables {
53-
table8: [u8; 1 << 8],
54-
table16: [u16; 1 << 16]
53+
table8: Box<[u8; 1 << 8]>,
54+
table16: Box<[u16; 1 << 16]>,
5555
}
5656

5757
impl Tables {
5858
fn new() -> Tables {
59-
let mut table8 = [0;1 << 8];
59+
let mut table8 = Box::new([0;1 << 8]);
6060
for (i, v) in table8.iter_mut().enumerate() {
6161
*v = Tables::computed_cpl8(i as u8);
6262
}
63-
let mut table16 = [0;1 << 16];
63+
let mut table16 = Box::new([0;1 << 16]);
6464
for (i, v) in table16.iter_mut().enumerate() {
6565
*v = (table8[i & 255] as u16) << 8 |
6666
table8[i >> 8] as u16;

src/test/run-pass-fulldeps/issue-13560.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// aux-build:issue-13560-2.rs
1313
// aux-build:issue-13560-3.rs
1414
// ignore-stage1
15+
// ignore-musl
1516

1617
// Regression test for issue #13560, the test itself is all in the dependent
1718
// libraries. The fail which previously failed to compile is the one numbered 3.

src/test/run-pass/issue-12133-3.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// aux-build:issue-12133-rlib.rs
1212
// aux-build:issue-12133-dylib.rs
1313
// aux-build:issue-12133-dylib2.rs
14+
// ignore-musl
1415

1516
// pretty-expanded FIXME #23616
1617

src/test/run-pass/linkage-visibility.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// aux-build:linkage-visibility.rs
1212
// ignore-android: FIXME(#10379)
1313
// ignore-windows: std::dynamic_lib does not work on Windows well
14+
// ignore-musl
1415

1516
#![feature(std_misc)]
1617

src/test/run-pass/out-of-stack-new-thread-no-split.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//ignore-android
12-
//ignore-freebsd
13-
//ignore-ios
14-
//ignore-dragonfly
15-
//ignore-bitrig
11+
// ignore-android
12+
// ignore-freebsd
13+
// ignore-ios
14+
// ignore-dragonfly
15+
// ignore-bitrig
16+
// ignore-musl
1617

1718
#![feature(asm)]
1819

src/test/run-pass/sepcomp-extern.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
// Test accessing external items from multiple compilation units.
1616

17+
extern crate sepcomp_extern_lib;
1718

18-
#[link(name = "sepcomp_extern_lib")]
1919
extern {
2020
#[allow(ctypes)]
2121
fn foo() -> usize;

0 commit comments

Comments
 (0)