Skip to content

Commit b1013b6

Browse files
committed
fix build
1 parent 5be4a94 commit b1013b6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bin_tests/tests/crashtracker_bin_test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ fn test_crash_tracking_bin_prechain_sigabrt() {
129129
test_crash_tracking_bin(BuildProfile::Release, "prechain_abort", "null_deref");
130130
}
131131

132-
// This test is disabled for now on x86_64 musl.
132+
// This test is disabled for now on x86_64 musl and macos
133133
// It seems that on aarch64 musl, libc has CFI which allows
134134
// unwinding passed the signal frame.
135135
#[test]
136-
#[cfg(not(all(target_arch = "x86_64", target_env = "musl")))]
136+
#[cfg(not(any(all(target_arch = "x86_64", target_env = "musl"), target_os = "macos")))]
137137
#[cfg_attr(miri, ignore)]
138138
fn test_crasht_tracking_validate_callstack() {
139139
test_crash_tracking_callstack()

tools/docker/Dockerfile.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ RUN find -name "Cargo.toml" | sed -e s#Cargo.toml#src/lib.rs#g | xargs -n 1 sh -
117117
RUN echo \
118118
bin_tests/src/bin/crashtracker_bin_test.rs \
119119
bin_tests/src/bin/crashtracker_receiver.rs \
120+
bin_tests/src/bin/crashing_test_app.rs \
120121
bin_tests/src/bin/crashtracker_unix_socket_receiver.rs \
121122
bin_tests/src/bin/test_the_tests.rs \
122123
builder/src/bin/release.rs \

0 commit comments

Comments
 (0)