mirror of
https://github.com/ceph/ceph
synced 2025-02-15 23:07:55 +00:00
Fixes: http://tracker.ceph.com/issues/18574 Signed-off-by: John Spray <john.spray@redhat.com>
21 lines
493 B
Plaintext
21 lines
493 B
Plaintext
# make sure we get the same MPI version on all hosts
|
|
os_type: ubuntu
|
|
os_version: "14.04"
|
|
|
|
tasks:
|
|
- pexec:
|
|
clients:
|
|
- cd $TESTDIR
|
|
- wget http://download.ceph.com/qa/fsx-mpi.c
|
|
- mpicc fsx-mpi.c -o fsx-mpi
|
|
- rm fsx-mpi.c
|
|
- ln -s $TESTDIR/mnt.* $TESTDIR/gmnt
|
|
- ssh_keys:
|
|
- mpi:
|
|
exec: sudo $TESTDIR/fsx-mpi -o 1MB -N 50000 -p 10000 -l 1048576 $TESTDIR/gmnt/test
|
|
workdir: $TESTDIR/gmnt
|
|
- pexec:
|
|
all:
|
|
- rm $TESTDIR/gmnt
|
|
- rm $TESTDIR/fsx-mpi
|