We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e597d commit bf0325eCopy full SHA for bf0325e
.github/workflows/ci.yml
@@ -545,6 +545,8 @@ jobs:
545
- lint
546
547
strategy:
548
+ # GNUStep tests are currently flaky, this makes it easier to see
549
+ fail-fast: false
550
matrix:
551
include:
552
- name: Test GNUStep with libobjc2 v1.9
crates/icrate/tests/mutable_array.rs
@@ -158,6 +158,10 @@ fn test_remove() {
158
159
#[test]
160
#[cfg(feature = "Foundation_NSString")]
161
+#[cfg_attr(
162
+ feature = "gnustep-1-7",
163
+ ignore = "thread safety issues regarding initialization"
164
+)]
165
fn test_into_vec() {
166
let array = NSMutableArray::from_id_slice(&[Foundation::NSString::new()]);
167
0 commit comments