Skip to content

Commit 0546030

Browse files
committed
Skipping Distributed tests
1 parent 43df2a0 commit 0546030

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/ci-test-stdlib.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ declare -a tests_to_skip=(
2727
"SparseArrays"
2828
# Running LinearAlgebra in a separate job
2929
"LinearAlgebra"
30-
# Skipping Distributed tests
30+
# Skipping distributed tests because of https://github.com/JuliaLang/Distributed.jl/issues/132
3131
"Distributed"
3232
)
3333
# These tests need multiple workers.

mmtk/src/julia_types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,6 @@ const _: () = {
248248
pub type sigjmp_buf = [__jmp_buf_tag; 1usize];
249249
pub type jl_taggedvalue_t = _jl_taggedvalue_t;
250250
pub type jl_ptls_t = *mut _jl_tls_states_t;
251-
pub type jl_genericmemory_t = _jl_genericmemory_t;
252251
pub type sig_atomic_t = __sig_atomic_t;
253252
#[repr(C)]
254253
#[derive(Debug, Copy, Clone)]
@@ -944,6 +943,7 @@ const _: () = {
944943
["Offset of field: _jl_genericmemory_t::ptr"]
945944
[::std::mem::offset_of!(_jl_genericmemory_t, ptr) - 8usize];
946945
};
946+
pub type jl_genericmemory_t = _jl_genericmemory_t;
947947
#[repr(C)]
948948
#[derive(Debug, Copy, Clone)]
949949
pub struct jl_genericmemoryref_t {

0 commit comments

Comments
 (0)