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 e3ad45e commit 7181300Copy full SHA for 7181300
test/distributed_exec.jl
@@ -1772,6 +1772,13 @@ Base.cluster_cookie("foobar") # custom cookie
1772
npids = addprocs_with_testenv(WorkerArgTester(`--worker=foobar`, false))
1773
@test remotecall_fetch(myid, npids[1]) == npids[1]
1774
1775
+# Issue # 22865
1776
+# Must be run on a new cluster, i.e., all workers must be in the same state.
1777
+rmprocs(workers())
1778
+p1,p2 = addprocs_with_testenv(2)
1779
+@everywhere f22865(p) = remotecall_fetch(x->x.*2, p, ones(2))
1780
+@test ones(2).*2 == remotecall_fetch(f22865, p1, p2)
1781
+
1782
# Run topology tests last after removing all workers, since a given
1783
# cluster at any time only supports a single topology.
1784
rmprocs(workers())
0 commit comments