Topic: 11 parallel oofem tests failed

Hello all,
I'm trying to build oofem with parallel support and petsc.But after a few days' struggle, I still can't get it to work.
The related software installion is as follows:
system:ubuntu 14.04 LST
cmake 3.5.0
gcc-g++-gfortran compiler

1.openmpi 1.6.5-8 through ubuntu package manager installation
2.metis5.1.0 and parmetis4.0.3 installation
      Using "make config shared=1" to"/usr/local"
3.petsc3.5.1
       ./configure --with-mpi=1 --download-fblaslapack --with-shared-libraries
    make PETSC_DIR=/home/ckx/software/petsc/petsc-3.5.1 PETSC_ARCH=arch-linux2-c-debug all
    "make test"
    it builds and runs fine.
   Then I add a few lines below in .bashrc
                             export PETSC_DIR=/home/ckx/software/petsc/petsc-3.5.1
                            export PETSC_ARCH=arch-linux2-c-debug
                           export LD_LIBRARY_PATH=/home/ckx/software/petsc/petsc-3.5.1/arch-linux2-c-debug/lib:$LD_LIBRARY_PATH

4.oofem git version
    cmake -DUSE_PARALLEL="ON" -DUSE_PARMETIS="ON" -DPARMETIS_DIR=/usr/local -DMETIS_DIR=/usr/local -DMY_PETSC_DIR=/home/ckx/software/petsc/petsc-3.5.1 -DMY_PETSC_ARCH=arch-linux2-c-debug /home/ckx/software/oofem/oofemgit

However, when running "make partests",11 tests failed out of 14. Other serial tests succeed.
Anyone can help me?
The LastTest.log is included here.

Post's attachments

LastTest.log 505.45 kb, 2 downloads since 2016-12-06 

You don't have the permssions to download the attachments of this post.

Re: 11 parallel oofem tests failed

Hi neochen, you missed -DUSE_PETSC="ON", so it fails to create lstype=3.

Re: 11 parallel oofem tests failed

I thought  I had set that! So stupid a mistake I had made! Thank Mikael.