From: Augustin Degomme Date: Thu, 22 Aug 2019 12:49:48 +0000 (+0200) Subject: One rma test actually needs exactly 2 processes per node. X-Git-Tag: v3.24~147 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/9c7dc3fd35689c19088716b465b5a3a6b5d99d6e?hp=63c781b21095f0ab33f6d1194edc4fe82a578287 One rma test actually needs exactly 2 processes per node. Let's indulge it and add a hostfile for mpich tests, with various ppn setups. --- diff --git a/teshsuite/smpi/hostfile_mpich b/teshsuite/smpi/hostfile_mpich new file mode 100644 index 0000000000..99eec545b0 --- /dev/null +++ b/teshsuite/smpi/hostfile_mpich @@ -0,0 +1,5 @@ +Tremblay:2 +Jupiter:2 +Fafard:3 +Ginette:6 +Bourassa:7 diff --git a/teshsuite/smpi/mpich3-test/runtests b/teshsuite/smpi/mpich3-test/runtests index d2fb8c8340..92cba949ff 100755 --- a/teshsuite/smpi/mpich3-test/runtests +++ b/teshsuite/smpi/mpich3-test/runtests @@ -157,7 +157,7 @@ foreach $_ (@ARGV) { elsif (/--?maxnp=(.*)/) { $np_max = $1; } elsif (/--?tests=(.*)/) { $listfiles = $1; } elsif (/--?srcdir=(.*)/) { $srcdir = $1; - $mpiexec="$mpiexec -platform ${srcdir}/../../../../examples/platforms/small_platform_with_routers.xml -hostfile ${srcdir}/../../hostfile_coll --log=root.thr:critical --cfg=smpi/host-speed:1e9 --cfg=smpi/async-small-thresh:65536"; } + $mpiexec="$mpiexec -platform ${srcdir}/../../../../examples/platforms/small_platform_with_routers.xml -hostfile ${srcdir}/../../hostfile_mpich --log=root.thr:critical --cfg=smpi/host-speed:1e9 --cfg=smpi/async-small-thresh:65536"; } elsif (/--?verbose/) { $verbose = 1; } elsif (/--?showprogress/) { $showProgress = 1; } elsif (/--?debug/) { $debug = 1; }