Moose installation on ubuntu 20.04

329 views
Skip to first unread message

Abdelhak MISSAOUI

unread,
Nov 3, 2020, 2:11:23 PM11/3/20
to moose-users
hello everybody,
Im trying to install MOOSE, im following the instructions in the link bellow :
but i the step when i should activate MOOSE i got the following error :
-----------------------------------------------------------------------------------------------------------------------------------------------
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
To initialize your shell, run

    $ conda init <SHELL_NAME>

Currently supported shells are:
  - bash
  - fish
  - tcsh
  - xonsh
  - zsh
  - powershell

See 'conda init --help' for more information and options.

IMPORTANT: You may need to close and restart your shell after running 'conda init'.
------------------------------------------------------------------------------------------------------------------------------------------
i went to the link bellow :
but i got the same error.

Roger Aubert

unread,
Nov 3, 2020, 2:30:05 PM11/3/20
to moose-users

Hello abdelhakm,
run "conda init bash", open a new terminal, and continue with the "conda activate moose" step.

Abdelhak MISSAOUI

unread,
Nov 3, 2020, 2:40:47 PM11/3/20
to moose...@googlegroups.com
When i open a new terminal, i get: conda command not found

--
You received this message because you are subscribed to the Google Groups "moose-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to moose-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/moose-users/9677dbf3-3d27-409b-bb6f-7cc5563d8d2en%40googlegroups.com.

Jason Miller

unread,
Nov 3, 2020, 3:07:38 PM11/3/20
to moose-users
The instructions immediately following `conda activate moose` say to follow the onscreen instructions:

You may receive an error, accompanied by additional instructions when attempting to activate a profile. Follow those on-screen instructions, and try to activate the moose environment again. If you are unsure how to proceed, please see conda activate moose section in our troubleshooting guide for Conda.

Those instructions are on your screen:

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
To initialize your shell, run

    $ conda init <SHELL_NAME>

Currently supported shells are:
  - bash
  - fish
  - tcsh
  - xonsh
  - zsh
  - powershell

See 'conda init --help' for more information and options.

IMPORTANT: You may need to close and restart your shell after running 'conda init'.

The reason we don't tell people what to do here, is because not everyone will be using the same shell. Most of us are using bash, many others are using zsh. The reason you are receiving a 'command not found' error is because `conda init <SHELL_NAME>` was not performed before closing the terminal. Hence, you now need to export your PATH to it again (and try `conda init` again).


What you should do now, is go to the troubleshooting guide for Conda: https://mooseframework.inl.gov/help/troubleshooting.html#condaissues, scroll down to "command not found: conda", follow those instructions, and the instructions immediately following those: "conda activate moose".

Hope this helps!
Jason












Abdelhak MISSAOUI

unread,
Nov 3, 2020, 3:45:30 PM11/3/20
to moose...@googlegroups.com
thank you all for your help, just another question concerning  cloning MOOSE, igot the following error:
Command 'git' not found, but can be installed with:

sudo apt install git

Can i use sudo to install git?

Jason Miller

unread,
Nov 3, 2020, 4:07:41 PM11/3/20
to moose-users
Yeppers. And knowing you are using Ubuntu, you might want to also install the following while you're at it. As we've seen that also necessary:

  sudo apt install build-essential libquadmath0

Abdelhak MISSAOUI

unread,
Nov 3, 2020, 4:25:59 PM11/3/20
to moose...@googlegroups.com

Thank you Jason,
when  i checkout master "git checkout master" i get this error:
Branch 'master' set up to track remote branch 'master' from 'origin'.
Switched to a new branch 'master'



Jason Miller

unread,
Nov 3, 2020, 7:02:36 PM11/3/20
to moose-users
That is `git` telling you precisely what it is you asked it to do. There is no error here. While not infallible, a common way to understand if a command resulted in an error or not, is to `echo $?` immediately following the command in question:

❯ git checkout master

Branch 'master' set up to track remote branch 'master' from 'origin'.
Switched to a new branch 'master'
❯ echo $?
0

0 (zero) means no error. You can test this theory by running the command `false`:

❯ false
❯ echo $?
1

Or purposefully a bunch of gibberish to produce a 'command not found' error:

❯ adsfasdfadf
zsh: command not found: adsfasdfadf
❯ echo $?
127

Anything higher than a zero is considered an error.


Now I am being pedantic... Be careful reporting the exit code by `echo $?`. Consecutively running `echo $?` for the exit code, will in fact register as a successful command:

❯ asdfasdf
zsh: command not found: asdfasdf
❯ echo $?
127
❯ echo $?
0

The last `echo` is just telling us that the previous command (in this case another `echo $?`) exited correctly. The point is, if you make a mistake, you won't be able to get the exit code of the actual command you are interested in without running that command again. I've had several users in the past return an improper exit code due to this.

./some_command
wecho $?   <-- a typo, resulting in an error
echo $?    <-- no longer a valid way to explain what the exit code was for ./some_command, but rather for the typo.



Abdelhak MISSAOUI

unread,
Nov 4, 2020, 8:12:44 AM11/4/20
to moose...@googlegroups.com
thank you for your help, when i run some tests, there is no tests passing and i get:

"Ran 51 tests in 5.5 seconds.
0 passed, 7 skipped, 0 pending, 51 FAILED
MAX FAILURES REACHED"

normally, i should see most of the tests passing, is there a problem in moose installation?

normally, i have to see most of the tests passing, is there a problem in ninstallation of MOOSE ?

Jason Miller

unread,
Nov 4, 2020, 10:33:52 AM11/4/20
to moose-users
You need to post the actual error before we can say for certain what to do next (scroll up in the terminal a ways). Normally when all tests fail, it's a rather simple issue/solution.

Thanks!
Jason

Abdelhak MISSAOUI

unread,
Nov 4, 2020, 1:10:26 PM11/4/20
to moose...@googlegroups.com
when i run tests i get this :

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
indicators/analytical_indicator.test: Working Directory: /home/abdo2/projects/moose/test/tests/indicators/analytical_indicator
indicators/analytical_indicator.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i analytical_indicator_test.i --error --error-unused --error-override --no-gdb-backtrace
indicators/analytical_indicator.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/analytical_indicator.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/analytical_indicator.test:
indicators/analytical_indicator.test:
indicators/analytical_indicator.test: Exit Code: 127
indicators/analytical_indicator.test: ################################################################################
indicators/analytical_indicator.test: Tester failed, reason: CRASH
indicators/analytical_indicator.test:
indicators/analytical_indicator.test .......................................................... FAILED (CRASH)
fixedbugs/i8575.test: Working Directory: /home/abdo2/projects/moose/test/tests/fixedbugs/i8575
fixedbugs/i8575.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i test.i --error --error-unused --error-override --no-gdb-backtrace
fixedbugs/i8575.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
fixedbugs/i8575.test:
fixedbugs/i8575.test:
fixedbugs/i8575.test: Exit Code: 127
fixedbugs/i8575.test: ################################################################################
fixedbugs/i8575.test: Tester failed, reason: CRASH
fixedbugs/i8575.test:
fixedbugs/i8575.test .......................................................................... FAILED (CRASH)
indicators/gradient_jump_indicator.test: Working Directory: /home/abdo2/projects/moose/test/tests/indicators/gradient_jump_indicator
indicators/gradient_jump_indicator.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i gradient_jump_indicator_test.i --error --error-unused --error-override --no-gdb-backtrace
indicators/gradient_jump_indicator.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/gradient_jump_indicator.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/gradient_jump_indicator.test:
indicators/gradient_jump_indicator.test:
indicators/gradient_jump_indicator.test: Exit Code: 127
indicators/gradient_jump_indicator.test: ################################################################################
indicators/gradient_jump_indicator.test: Tester failed, reason: CRASH
indicators/gradient_jump_indicator.test:
indicators/gradient_jump_indicator.test ....................................................... FAILED (CRASH)
indicators/laplacian_jump_indicator.group/test_biharmonic: Working Directory: /home/abdo2/projects/moose/test/tests/indicators/laplacian_jump_indicator
indicators/laplacian_jump_indicator.group/test_biharmonic: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i biharmonic.i --error --error-unused --error-override --no-gdb-backtrace
indicators/laplacian_jump_indicator.group/test_biharmonic: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/laplacian_jump_indicator.group/test_biharmonic: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/laplacian_jump_indicator.group/test_biharmonic:
indicators/laplacian_jump_indicator.group/test_biharmonic:
indicators/laplacian_jump_indicator.group/test_biharmonic: Exit Code: 127
indicators/laplacian_jump_indicator.group/test_biharmonic: ################################################################################
indicators/laplacian_jump_indicator.group/test_biharmonic: Tester failed, reason: CRASH
indicators/laplacian_jump_indicator.group/test_biharmonic:
indicators/laplacian_jump_indicator.group/test_biharmonic ..................................... FAILED (CRASH)
indicators/value_jump_indicator.test: Working Directory: /home/abdo2/projects/moose/test/tests/indicators/value_jump_indicator
indicators/value_jump_indicator.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i value_jump_indicator_test.i --error --error-unused --error-override --no-gdb-backtrace
indicators/value_jump_indicator.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/value_jump_indicator.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/value_jump_indicator.test:
indicators/value_jump_indicator.test:
indicators/value_jump_indicator.test: Exit Code: 127
indicators/value_jump_indicator.test: ################################################################################
indicators/value_jump_indicator.test: Tester failed, reason: CRASH
indicators/value_jump_indicator.test:
indicators/value_jump_indicator.test .......................................................... FAILED (CRASH)
executioners/solve_type_linear.linear_with_full_smp: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/solve_type_linear
executioners/solve_type_linear.linear_with_full_smp: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i linear_with_full_smp.i --error --error-unused --error-override --no-gdb-backtrace
executioners/solve_type_linear.linear_with_full_smp: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/solve_type_linear.linear_with_full_smp: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/solve_type_linear.linear_with_full_smp:
executioners/solve_type_linear.linear_with_full_smp:
executioners/solve_type_linear.linear_with_full_smp: Exit Code: 127
executioners/solve_type_linear.linear_with_full_smp: ################################################################################
executioners/solve_type_linear.linear_with_full_smp: Tester failed, reason: CRASH
executioners/solve_type_linear.linear_with_full_smp:
executioners/solve_type_linear.linear_with_full_smp ........................................... FAILED (CRASH)
executioners/nullspace.test_singular: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/nullspace
executioners/nullspace.test_singular: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i singular.i --error --error-unused --error-override --no-gdb-backtrace
executioners/nullspace.test_singular: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/nullspace.test_singular: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/nullspace.test_singular:
executioners/nullspace.test_singular:
executioners/nullspace.test_singular: Exit Code: 127
executioners/nullspace.test_singular: ################################################################################
executioners/nullspace.test_singular: Tester failed, reason: CRASH
executioners/nullspace.test_singular:
executioners/nullspace.test_singular .......................................................... FAILED (CRASH)
executioners/executioner.test_steady_adapt: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/executioner
executioners/executioner.test_steady_adapt: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i steady-adapt.i --error --error-unused --error-override --no-gdb-backtrace
executioners/executioner.test_steady_adapt: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_steady_adapt: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_steady_adapt:
executioners/executioner.test_steady_adapt:
executioners/executioner.test_steady_adapt: Exit Code: 127
executioners/executioner.test_steady_adapt: ################################################################################
executioners/executioner.test_steady_adapt: Tester failed, reason: CRASH
executioners/executioner.test_steady_adapt:
executioners/executioner.test_steady_adapt .................................................... FAILED (CRASH)
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc: Working Directory: /home/abdo2/projects/moose/test/tests/indicators/laplacian_jump_indicator
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i biharmonic.i BCs/active='all_value all_laplacian' Outputs/file_base=biharmonic_weak_bc_out --error --error-unused --error-override --no-gdb-backtrace
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc:
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc:
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc: Exit Code: 127
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc: ################################################################################
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc: Tester failed, reason: CRASH
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc:
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc ............................. FAILED (CRASH)
executioners/nullspace.test_singular_contaminated: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/nullspace
executioners/nullspace.test_singular_contaminated: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i singular_contaminated.i --error --error-unused --error-override --no-gdb-backtrace
executioners/nullspace.test_singular_contaminated: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/nullspace.test_singular_contaminated: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/nullspace.test_singular_contaminated:
executioners/nullspace.test_singular_contaminated:
executioners/nullspace.test_singular_contaminated: Exit Code: 127
executioners/nullspace.test_singular_contaminated: ################################################################################
executioners/nullspace.test_singular_contaminated: Tester failed, reason: CRASH
executioners/nullspace.test_singular_contaminated:
executioners/nullspace.test_singular_contaminated ............................................. FAILED (CRASH)
executioners/executioner.test_steady_state_check: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/executioner
executioners/executioner.test_steady_state_check: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i steady_state_check_test.i --error --error-unused --error-override --no-gdb-backtrace
executioners/executioner.test_steady_state_check: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_steady_state_check: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_steady_state_check:
executioners/executioner.test_steady_state_check:
executioners/executioner.test_steady_state_check: Exit Code: 127
executioners/executioner.test_steady_state_check: ################################################################################
executioners/executioner.test_steady_state_check: Tester failed, reason: CRASH
executioners/executioner.test_steady_state_check:
executioners/executioner.test_steady_state_check .............................................. FAILED (CRASH)
indicators/laplacian_jump_indicator.group/test_biharmonic_transient: Working Directory: /home/abdo2/projects/moose/test/tests/indicators/laplacian_jump_indicator
indicators/laplacian_jump_indicator.group/test_biharmonic_transient: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i biharmonic_transient.i --error --error-unused --error-override --no-gdb-backtrace
indicators/laplacian_jump_indicator.group/test_biharmonic_transient: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/laplacian_jump_indicator.group/test_biharmonic_transient: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
indicators/laplacian_jump_indicator.group/test_biharmonic_transient:
indicators/laplacian_jump_indicator.group/test_biharmonic_transient:
indicators/laplacian_jump_indicator.group/test_biharmonic_transient: Exit Code: 127
indicators/laplacian_jump_indicator.group/test_biharmonic_transient: ################################################################################
indicators/laplacian_jump_indicator.group/test_biharmonic_transient: Tester failed, reason: CRASH
indicators/laplacian_jump_indicator.group/test_biharmonic_transient:
indicators/laplacian_jump_indicator.group/test_biharmonic_transient ........................... FAILED (CRASH)
executioners/pp_binding.pp_binding: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/pp_binding
executioners/pp_binding.pp_binding: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i pp_binding_check.i --error --error-unused --error-override --no-gdb-backtrace
executioners/pp_binding.pp_binding: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/pp_binding.pp_binding: ################################################################################
executioners/pp_binding.pp_binding:
executioners/pp_binding.pp_binding: Unable to match the following pattern against the program's output:
executioners/pp_binding.pp_binding:
executioners/pp_binding.pp_binding: Postprocessor binding is OK
executioners/pp_binding.pp_binding:
executioners/pp_binding.pp_binding: ################################################################################
executioners/pp_binding.pp_binding: Tester failed, reason: EXPECTED OUTPUT MISSING
executioners/pp_binding.pp_binding:
executioners/pp_binding.pp_binding .......................................... FAILED (EXPECTED OUTPUT MISSING)
executioners/fixed_point.test_fixed_point: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/fixed_point
executioners/fixed_point.test_fixed_point: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i 2d_diffusion_fixed_point.i --error --error-unused --error-override --no-gdb-backtrace
executioners/fixed_point.test_fixed_point: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/fixed_point.test_fixed_point: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/fixed_point.test_fixed_point:
executioners/fixed_point.test_fixed_point:
executioners/fixed_point.test_fixed_point: Exit Code: 127
executioners/fixed_point.test_fixed_point: ################################################################################
executioners/fixed_point.test_fixed_point: Tester failed, reason: CRASH
executioners/fixed_point.test_fixed_point:
executioners/fixed_point.test_fixed_point ..................................................... FAILED (CRASH)
executioners/executioner.test_steady: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/executioner
executioners/executioner.test_steady: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i steady.i --error --error-unused --error-override --no-gdb-backtrace
executioners/executioner.test_steady: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_steady: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_steady:
executioners/executioner.test_steady:
executioners/executioner.test_steady: Exit Code: 127
executioners/executioner.test_steady: ################################################################################
executioners/executioner.test_steady: Tester failed, reason: CRASH
executioners/executioner.test_steady:
executioners/executioner.test_steady .......................................................... FAILED (CRASH)
executioners/fixed_point.test_fixed_point_nonlinear: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/fixed_point
executioners/fixed_point.test_fixed_point_nonlinear: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i nonlinear_fixed_point.i --error --error-unused --error-override --no-gdb-backtrace
executioners/fixed_point.test_fixed_point_nonlinear: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/fixed_point.test_fixed_point_nonlinear: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/fixed_point.test_fixed_point_nonlinear:
executioners/fixed_point.test_fixed_point_nonlinear:
executioners/fixed_point.test_fixed_point_nonlinear: Exit Code: 127
executioners/fixed_point.test_fixed_point_nonlinear: ################################################################################
executioners/fixed_point.test_fixed_point_nonlinear: Tester failed, reason: CRASH
executioners/fixed_point.test_fixed_point_nonlinear:
executioners/fixed_point.test_fixed_point_nonlinear ........................................... FAILED (CRASH)
executioners/eigen_executioners.test_inverse_power_method: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/eigen_executioners
executioners/eigen_executioners.test_inverse_power_method: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i ipm.i --error-unused --error-override --no-gdb-backtrace
executioners/eigen_executioners.test_inverse_power_method: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_inverse_power_method: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_inverse_power_method:
executioners/eigen_executioners.test_inverse_power_method:
executioners/eigen_executioners.test_inverse_power_method: Exit Code: 127
executioners/eigen_executioners.test_inverse_power_method: ################################################################################
executioners/eigen_executioners.test_inverse_power_method: Tester failed, reason: CRASH
executioners/eigen_executioners.test_inverse_power_method:
executioners/eigen_executioners.test_inverse_power_method ..................................... FAILED (CRASH)
executioners/executioner.test_transient: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/executioner
executioners/executioner.test_transient: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i transient.i --error --error-unused --error-override --no-gdb-backtrace
executioners/executioner.test_transient: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_transient: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_transient:
executioners/executioner.test_transient:
executioners/executioner.test_transient: Exit Code: 127
executioners/executioner.test_transient: ################################################################################
executioners/executioner.test_transient: Tester failed, reason: CRASH
executioners/executioner.test_transient:
executioners/executioner.test_transient ....................................................... FAILED (CRASH)
executioners/adapt_and_modify.test: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/adapt_and_modify
executioners/adapt_and_modify.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i adapt_and_modify.i --error --error-unused --error-override --no-gdb-backtrace
executioners/adapt_and_modify.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/adapt_and_modify.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/adapt_and_modify.test:
executioners/adapt_and_modify.test:
executioners/adapt_and_modify.test: Exit Code: 127
executioners/adapt_and_modify.test: ################################################################################
executioners/adapt_and_modify.test: Tester failed, reason: CRASH
executioners/adapt_and_modify.test:
executioners/adapt_and_modify.test ............................................................ FAILED (CRASH)
executioners/transient_sync_time.testsynctimes: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/transient_sync_time
executioners/transient_sync_time.testsynctimes: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i transient_sync_time_test.i --error --error-unused --error-override --no-gdb-backtrace
executioners/transient_sync_time.testsynctimes: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/transient_sync_time.testsynctimes: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/transient_sync_time.testsynctimes:
executioners/transient_sync_time.testsynctimes:
executioners/transient_sync_time.testsynctimes: Exit Code: 127
executioners/transient_sync_time.testsynctimes: ################################################################################
executioners/transient_sync_time.testsynctimes: Tester failed, reason: CRASH
executioners/transient_sync_time.testsynctimes:
executioners/transient_sync_time.testsynctimes ................................................ FAILED (CRASH)
executioners/arbitrary_execute_flag.test: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/arbitrary_execute_flag
executioners/arbitrary_execute_flag.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i arbitrary_execute.i --error --error-unused --error-override --no-gdb-backtrace
executioners/arbitrary_execute_flag.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/arbitrary_execute_flag.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/arbitrary_execute_flag.test: ################################################################################
executioners/arbitrary_execute_flag.test:
executioners/arbitrary_execute_flag.test: Unable to match the following pattern against the program's output:
executioners/arbitrary_execute_flag.test:
executioners/arbitrary_execute_flag.test: Flag\sName:\sJUST_GO
executioners/arbitrary_execute_flag.test:
executioners/arbitrary_execute_flag.test: ################################################################################
executioners/arbitrary_execute_flag.test: Tester failed, reason: EXPECTED OUTPUT MISSING
executioners/arbitrary_execute_flag.test:
executioners/arbitrary_execute_flag.test .................................... FAILED (EXPECTED OUTPUT MISSING)
executioners/nl_divergence_tolerance.test: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/nl_divergence_tolerance
executioners/nl_divergence_tolerance.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i nl_divergence_tolerance.i --error --error-unused --error-override --no-gdb-backtrace
executioners/nl_divergence_tolerance.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/nl_divergence_tolerance.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/nl_divergence_tolerance.test:
executioners/nl_divergence_tolerance.test:
executioners/nl_divergence_tolerance.test: Exit Code: 127
executioners/nl_divergence_tolerance.test: ################################################################################
executioners/nl_divergence_tolerance.test: Tester failed, reason: CRASH
executioners/nl_divergence_tolerance.test:
executioners/nl_divergence_tolerance.test ..................................................... FAILED (CRASH)
executioners/executioner.test_print_automatic_scaling_factors_true: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/executioner
executioners/executioner.test_print_automatic_scaling_factors_true: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i steady.i Executioner/automatic_scaling=true Executioner/verbose=true Outputs/exodus=false --error --error-unused --error-override --no-gdb-backtrace
executioners/executioner.test_print_automatic_scaling_factors_true: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_print_automatic_scaling_factors_true: ################################################################################
executioners/executioner.test_print_automatic_scaling_factors_true:
executioners/executioner.test_print_automatic_scaling_factors_true: Unable to match the following pattern against the program's output:
executioners/executioner.test_print_automatic_scaling_factors_true:
executioners/executioner.test_print_automatic_scaling_factors_true: Automatic scaling factors:\s+u: 0\.175781
executioners/executioner.test_print_automatic_scaling_factors_true:
executioners/executioner.test_print_automatic_scaling_factors_true: ################################################################################
executioners/executioner.test_print_automatic_scaling_factors_true: Tester failed, reason: EXPECTED OUTPUT MISSING
executioners/executioner.test_print_automatic_scaling_factors_true:
executioners/executioner.test_print_automatic_scaling_factors_true .......... FAILED (EXPECTED OUTPUT MISSING)
executioners/eigen_executioners.test_nonlinear_eigen: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/eigen_executioners
executioners/eigen_executioners.test_nonlinear_eigen: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i ne.i --error --error-unused --error-override --no-gdb-backtrace
executioners/eigen_executioners.test_nonlinear_eigen: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_nonlinear_eigen: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_nonlinear_eigen:
executioners/eigen_executioners.test_nonlinear_eigen:
executioners/eigen_executioners.test_nonlinear_eigen: Exit Code: 127
executioners/eigen_executioners.test_nonlinear_eigen: ################################################################################
executioners/eigen_executioners.test_nonlinear_eigen: Tester failed, reason: CRASH
executioners/eigen_executioners.test_nonlinear_eigen:
executioners/eigen_executioners.test_nonlinear_eigen .......................................... FAILED (CRASH)
executioners/steady_time.test_steady_time: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/steady_time
executioners/steady_time.test_steady_time: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i steady_time.i --error --error-unused --error-override --no-gdb-backtrace
executioners/steady_time.test_steady_time: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/steady_time.test_steady_time: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/steady_time.test_steady_time:
executioners/steady_time.test_steady_time:
executioners/steady_time.test_steady_time: Exit Code: 127
executioners/steady_time.test_steady_time: ################################################################################
executioners/steady_time.test_steady_time: Tester failed, reason: CRASH
executioners/steady_time.test_steady_time:
executioners/steady_time.test_steady_time ..................................................... FAILED (CRASH)
executioners/transient_sync_time.test_time_out_interval: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/transient_sync_time
executioners/transient_sync_time.test_time_out_interval: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i transient_time_interval_output_test.i --error --error-unused --error-override --no-gdb-backtrace
executioners/transient_sync_time.test_time_out_interval: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/transient_sync_time.test_time_out_interval: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/transient_sync_time.test_time_out_interval:
executioners/transient_sync_time.test_time_out_interval:
executioners/transient_sync_time.test_time_out_interval: Exit Code: 127
executioners/transient_sync_time.test_time_out_interval: ################################################################################
executioners/transient_sync_time.test_time_out_interval: Tester failed, reason: CRASH
executioners/transient_sync_time.test_time_out_interval:
executioners/transient_sync_time.test_time_out_interval ....................................... FAILED (CRASH)
executioners/full_jacobian_thread_active_bcs.full_jacobian_thread_active_bcs: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/full_jacobian_thread_active_bcs
executioners/full_jacobian_thread_active_bcs.full_jacobian_thread_active_bcs: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i full_jacobian_thread_active_bcs.i Outputs/exodus=false -snes_test_jacobian -snes_force_iteration -snes_type ksponly -ksp_type preonly -pc_type none -snes_convergence_test skip --error --error-unused --error-override --no-gdb-backtrace
executioners/full_jacobian_thread_active_bcs.full_jacobian_thread_active_bcs: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/full_jacobian_thread_active_bcs.full_jacobian_thread_active_bcs:
executioners/full_jacobian_thread_active_bcs.full_jacobian_thread_active_bcs: ################################################################################
executioners/full_jacobian_thread_active_bcs.full_jacobian_thread_active_bcs: Tester failed, reason: EXPECTED OUTPUT NOT FOUND
executioners/full_jacobian_thread_active_bcs.full_jacobian_thread_active_bcs:
executioners/full_jacobian_thread_active_bcs.full_jacobian_thread_active_bcs FAILED (EXPECTED OUTPUT NOT FOUND)
executioners/time_period.test: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/time_period
executioners/time_period.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i time_period_test.i --error --error-unused --error-override --no-gdb-backtrace
executioners/time_period.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/time_period.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/time_period.test:
executioners/time_period.test:
executioners/time_period.test: Exit Code: 127
executioners/time_period.test: ################################################################################
executioners/time_period.test: Tester failed, reason: CRASH
executioners/time_period.test:
executioners/time_period.test ................................................................. FAILED (CRASH)
executioners/executioner.test_print_automatic_scaling_factors_false: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/executioner
executioners/executioner.test_print_automatic_scaling_factors_false: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i steady.i Executioner/automatic_scaling=true Outputs/exodus=false --error --error-unused --error-override --no-gdb-backtrace
executioners/executioner.test_print_automatic_scaling_factors_false: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/executioner.test_print_automatic_scaling_factors_false:
executioners/executioner.test_print_automatic_scaling_factors_false:
executioners/executioner.test_print_automatic_scaling_factors_false: Exit Code: 127
executioners/executioner.test_print_automatic_scaling_factors_false: ################################################################################
executioners/executioner.test_print_automatic_scaling_factors_false: Tester failed, reason: CRASH
executioners/executioner.test_print_automatic_scaling_factors_false:
executioners/executioner.test_print_automatic_scaling_factors_false ........................... FAILED (CRASH)
nodalkernels/penalty_dirichlet.test: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/penalty_dirichlet
nodalkernels/penalty_dirichlet.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i nodal_penalty_dirichlet.i --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/penalty_dirichlet.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/penalty_dirichlet.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/penalty_dirichlet.test:
nodalkernels/penalty_dirichlet.test:
nodalkernels/penalty_dirichlet.test: Exit Code: 127
nodalkernels/penalty_dirichlet.test: ################################################################################
nodalkernels/penalty_dirichlet.test: Tester failed, reason: CRASH
nodalkernels/penalty_dirichlet.test:
nodalkernels/penalty_dirichlet.test ........................................................... FAILED (CRASH)
nodalkernels/high_order_time_integration.test: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/high_order_time_integration
nodalkernels/high_order_time_integration.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i high_order_time_integration.i --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/high_order_time_integration.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/high_order_time_integration.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/high_order_time_integration.test:
nodalkernels/high_order_time_integration.test:
nodalkernels/high_order_time_integration.test: Exit Code: 127
nodalkernels/high_order_time_integration.test: ################################################################################
nodalkernels/high_order_time_integration.test: Tester failed, reason: CRASH
nodalkernels/high_order_time_integration.test:
nodalkernels/high_order_time_integration.test ................................................. FAILED (CRASH)
executioners/steady_time.test_steady_set_time: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/steady_time
executioners/steady_time.test_steady_set_time: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i steady_time.i Executioner/time=1 Outputs/file_base=steady_time_one_out --error --error-unused --error-override --no-gdb-backtrace
executioners/steady_time.test_steady_set_time: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/steady_time.test_steady_set_time: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/steady_time.test_steady_set_time:
executioners/steady_time.test_steady_set_time:
executioners/steady_time.test_steady_set_time: Exit Code: 127
executioners/steady_time.test_steady_set_time: ################################################################################
executioners/steady_time.test_steady_set_time: Tester failed, reason: CRASH
executioners/steady_time.test_steady_set_time:
executioners/steady_time.test_steady_set_time ................................................. FAILED (CRASH)
executioners/eigen_executioners.test_nonlinear_eigen_parallel: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/eigen_executioners
executioners/eigen_executioners.test_nonlinear_eigen_parallel: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i ne.i Executioner/output_after_power_iterations=false Executioner/output_before_normalization=false Outputs/file_base=ne_final Postprocessors/udiff/outputs=console --error-unused --error-override --no-gdb-backtrace
executioners/eigen_executioners.test_nonlinear_eigen_parallel: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_nonlinear_eigen_parallel: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_nonlinear_eigen_parallel:
executioners/eigen_executioners.test_nonlinear_eigen_parallel:
executioners/eigen_executioners.test_nonlinear_eigen_parallel: Exit Code: 127
executioners/eigen_executioners.test_nonlinear_eigen_parallel: ################################################################################
executioners/eigen_executioners.test_nonlinear_eigen_parallel: Tester failed, reason: CRASH
executioners/eigen_executioners.test_nonlinear_eigen_parallel:
executioners/eigen_executioners.test_nonlinear_eigen_parallel ................................. FAILED (CRASH)
nodalkernels/constraint_enforcement.lower_bound/exo: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/constraint_enforcement
nodalkernels/constraint_enforcement.lower_bound/exo: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i lower-bound.i --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/constraint_enforcement.lower_bound/exo: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constraint_enforcement.lower_bound/exo: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constraint_enforcement.lower_bound/exo:
nodalkernels/constraint_enforcement.lower_bound/exo:
nodalkernels/constraint_enforcement.lower_bound/exo: Exit Code: 127
nodalkernels/constraint_enforcement.lower_bound/exo: ################################################################################
nodalkernels/constraint_enforcement.lower_bound/exo: Tester failed, reason: CRASH
nodalkernels/constraint_enforcement.lower_bound/exo:
nodalkernels/constraint_enforcement.lower_bound/exo ........................................... FAILED (CRASH)
nodalkernels/constraint_enforcement.lower_bound/non_singular: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/constraint_enforcement
nodalkernels/constraint_enforcement.lower_bound/non_singular: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i lower-bound.i nx=10 num_steps=5 Outputs/exodus=false Outputs/active='' -pc_type svd -pc_svd_monitor --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/constraint_enforcement.lower_bound/non_singular: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constraint_enforcement.lower_bound/non_singular: ################################################################################
nodalkernels/constraint_enforcement.lower_bound/non_singular:
nodalkernels/constraint_enforcement.lower_bound/non_singular: Unable to match the following pattern against the program's output:
nodalkernels/constraint_enforcement.lower_bound/non_singular:
nodalkernels/constraint_enforcement.lower_bound/non_singular: 0 of 22 singular values
nodalkernels/constraint_enforcement.lower_bound/non_singular:
nodalkernels/constraint_enforcement.lower_bound/non_singular: ################################################################################
nodalkernels/constraint_enforcement.lower_bound/non_singular: Tester failed, reason: EXPECTED OUTPUT MISSING
nodalkernels/constraint_enforcement.lower_bound/non_singular:
nodalkernels/constraint_enforcement.lower_bound/non_singular ................ FAILED (EXPECTED OUTPUT MISSING)
nodalkernels/constant_rate.group/test: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/constant_rate
nodalkernels/constant_rate.group/test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i constant_rate.i --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/constant_rate.group/test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constant_rate.group/test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constant_rate.group/test:
nodalkernels/constant_rate.group/test:
nodalkernels/constant_rate.group/test: Exit Code: 127
nodalkernels/constant_rate.group/test: ################################################################################
nodalkernels/constant_rate.group/test: Tester failed, reason: CRASH
nodalkernels/constant_rate.group/test:
nodalkernels/constant_rate.group/test ......................................................... FAILED (CRASH)
nodalkernels/constant_rate.group/threaded .......................................... [skipped dependency] SKIP
executioners/eigen_executioners.test_nonlinear_eigen_material: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/eigen_executioners
executioners/eigen_executioners.test_nonlinear_eigen_material: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i ne_mat.i --error --error-unused --error-override --no-gdb-backtrace
executioners/eigen_executioners.test_nonlinear_eigen_material: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_nonlinear_eigen_material: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_nonlinear_eigen_material:
executioners/eigen_executioners.test_nonlinear_eigen_material:
executioners/eigen_executioners.test_nonlinear_eigen_material: Exit Code: 127
executioners/eigen_executioners.test_nonlinear_eigen_material: ################################################################################
executioners/eigen_executioners.test_nonlinear_eigen_material: Tester failed, reason: CRASH
executioners/eigen_executioners.test_nonlinear_eigen_material:
executioners/eigen_executioners.test_nonlinear_eigen_material ................................. FAILED (CRASH)
nodalkernels/jac_test.test: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/jac_test
nodalkernels/jac_test.test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i jac_test.i --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/jac_test.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/jac_test.test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/jac_test.test:
nodalkernels/jac_test.test:
nodalkernels/jac_test.test: Exit Code: 127
nodalkernels/jac_test.test: ################################################################################
nodalkernels/jac_test.test: Tester failed, reason: CRASH
nodalkernels/jac_test.test:
nodalkernels/jac_test.test .................................................................... FAILED (CRASH)
nodalkernels/scaling.scaling: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/scaling
nodalkernels/scaling.scaling: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i scaling.i --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/scaling.scaling: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/scaling.scaling: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/scaling.scaling: ################################################################################
nodalkernels/scaling.scaling:
nodalkernels/scaling.scaling: Unable to match the following pattern against the program's output:
nodalkernels/scaling.scaling:
nodalkernels/scaling.scaling: Automatic scaling factors:\s+u:\s0\.25
nodalkernels/scaling.scaling:
nodalkernels/scaling.scaling: ################################################################################
nodalkernels/scaling.scaling: Tester failed, reason: EXPECTED OUTPUT MISSING
nodalkernels/scaling.scaling:
nodalkernels/scaling.scaling ................................................ FAILED (EXPECTED OUTPUT MISSING)
nodalkernels/constraint_enforcement.upper_bound/exo: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/constraint_enforcement
nodalkernels/constraint_enforcement.upper_bound/exo: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i upper-bound.i --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/constraint_enforcement.upper_bound/exo: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constraint_enforcement.upper_bound/exo: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constraint_enforcement.upper_bound/exo:
nodalkernels/constraint_enforcement.upper_bound/exo:
nodalkernels/constraint_enforcement.upper_bound/exo: Exit Code: 127
nodalkernels/constraint_enforcement.upper_bound/exo: ################################################################################
nodalkernels/constraint_enforcement.upper_bound/exo: Tester failed, reason: CRASH
nodalkernels/constraint_enforcement.upper_bound/exo:
nodalkernels/constraint_enforcement.upper_bound/exo ........................................... FAILED (CRASH)
executioners/eigen_executioners.test_normal_eigenkernel: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/eigen_executioners
executioners/eigen_executioners.test_normal_eigenkernel: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i normal_eigen_kernel.i --error --error-unused --error-override --no-gdb-backtrace
executioners/eigen_executioners.test_normal_eigenkernel: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_normal_eigenkernel: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_normal_eigenkernel:
executioners/eigen_executioners.test_normal_eigenkernel:
executioners/eigen_executioners.test_normal_eigenkernel: Exit Code: 127
executioners/eigen_executioners.test_normal_eigenkernel: ################################################################################
executioners/eigen_executioners.test_normal_eigenkernel: Tester failed, reason: CRASH
executioners/eigen_executioners.test_normal_eigenkernel:
executioners/eigen_executioners.test_normal_eigenkernel ....................................... FAILED (CRASH)
nodalkernels/jac_test.group/block_jacobian_test: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/jac_test
nodalkernels/jac_test.group/block_jacobian_test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i block_jacobian_test.i Outputs/exodus=false -snes_test_jacobian -snes_force_iteration -snes_type ksponly -ksp_type preonly -pc_type none -snes_convergence_test skip --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/jac_test.group/block_jacobian_test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/jac_test.group/block_jacobian_test:
nodalkernels/jac_test.group/block_jacobian_test: ################################################################################
nodalkernels/jac_test.group/block_jacobian_test: Tester failed, reason: EXPECTED OUTPUT NOT FOUND
nodalkernels/jac_test.group/block_jacobian_test:
nodalkernels/jac_test.group/block_jacobian_test ........................... FAILED (EXPECTED OUTPUT NOT FOUND)
nodalkernels/jac_test.group/bc_jacobian_test: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/jac_test
nodalkernels/jac_test.group/bc_jacobian_test: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i bc_jacobian_test.i Outputs/exodus=false -snes_test_jacobian -snes_force_iteration -snes_type ksponly -ksp_type preonly -pc_type none -snes_convergence_test skip --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/jac_test.group/bc_jacobian_test: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/jac_test.group/bc_jacobian_test:
nodalkernels/jac_test.group/bc_jacobian_test: ################################################################################
nodalkernels/jac_test.group/bc_jacobian_test: Tester failed, reason: EXPECTED OUTPUT NOT FOUND
nodalkernels/jac_test.group/bc_jacobian_test:
nodalkernels/jac_test.group/bc_jacobian_test .............................. FAILED (EXPECTED OUTPUT NOT FOUND)
nodalkernels/constraint_enforcement.upper_bound/non_singular: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/constraint_enforcement
nodalkernels/constraint_enforcement.upper_bound/non_singular: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i upper-bound.i nx=10 num_steps=5 Outputs/exodus=false Outputs/active='' -pc_type svd -pc_svd_monitor --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/constraint_enforcement.upper_bound/non_singular: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constraint_enforcement.upper_bound/non_singular: ################################################################################
nodalkernels/constraint_enforcement.upper_bound/non_singular:
nodalkernels/constraint_enforcement.upper_bound/non_singular: Unable to match the following pattern against the program's output:
nodalkernels/constraint_enforcement.upper_bound/non_singular:
nodalkernels/constraint_enforcement.upper_bound/non_singular: 0 of 22 singular values
nodalkernels/constraint_enforcement.upper_bound/non_singular:
nodalkernels/constraint_enforcement.upper_bound/non_singular: ################################################################################
nodalkernels/constraint_enforcement.upper_bound/non_singular: Tester failed, reason: EXPECTED OUTPUT MISSING
nodalkernels/constraint_enforcement.upper_bound/non_singular:
nodalkernels/constraint_enforcement.upper_bound/non_singular ................ FAILED (EXPECTED OUTPUT MISSING)
restart/restart_add_variable.add_variable_restart .................................. [skipped dependency] SKIP
restart/restart_add_variable.transient_with_stateful: Working Directory: /home/abdo2/projects/moose/test/tests/restart/restart_add_variable
restart/restart_add_variable.transient_with_stateful: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i transient_with_stateful.i --error --error-unused --error-override --no-gdb-backtrace
restart/restart_add_variable.transient_with_stateful: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
restart/restart_add_variable.transient_with_stateful: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
restart/restart_add_variable.transient_with_stateful:
restart/restart_add_variable.transient_with_stateful:
restart/restart_add_variable.transient_with_stateful: Exit Code: 127
restart/restart_add_variable.transient_with_stateful: ################################################################################
restart/restart_add_variable.transient_with_stateful: Tester failed, reason: CRASH
restart/restart_add_variable.transient_with_stateful:
restart/restart_add_variable.transient_with_stateful .......................................... FAILED (CRASH)
executioners/eigen_executioners.test_another_nonlinear_eigen: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/eigen_executioners
executioners/eigen_executioners.test_another_nonlinear_eigen: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i ane.i --error --error-unused --error-override --no-gdb-backtrace
executioners/eigen_executioners.test_another_nonlinear_eigen: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_another_nonlinear_eigen: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_another_nonlinear_eigen:
executioners/eigen_executioners.test_another_nonlinear_eigen:
executioners/eigen_executioners.test_another_nonlinear_eigen: Exit Code: 127
executioners/eigen_executioners.test_another_nonlinear_eigen: ################################################################################
executioners/eigen_executioners.test_another_nonlinear_eigen: Tester failed, reason: CRASH
executioners/eigen_executioners.test_another_nonlinear_eigen:
executioners/eigen_executioners.test_another_nonlinear_eigen .................................. FAILED (CRASH)
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo: Working Directory: /home/abdo2/projects/moose/test/tests/nodalkernels/constraint_enforcement
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i upper-and-lower-bound.i Postprocessors/active='active_upper_lm upper_violations active_lower_lm lower_violations' --error --error-unused --error-override --no-gdb-backtrace
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo:
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo:
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo: Exit Code: 127
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo: ################################################################################
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo: Tester failed, reason: CRASH
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo:
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo ................................. FAILED (CRASH)
restart/start_time_override.default_start_timestart ................................ [skipped dependency] SKIP
restart/start_time_override.start_time_override_zero ............................... [skipped dependency] SKIP
restart/start_time_override.steady: Working Directory: /home/abdo2/projects/moose/test/tests/restart/start_time_override
restart/start_time_override.steady: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i transient.i --error --error-unused --error-override --no-gdb-backtrace
restart/start_time_override.steady: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
restart/start_time_override.steady:
restart/start_time_override.steady:
restart/start_time_override.steady: Exit Code: 127
restart/start_time_override.steady: ################################################################################
restart/start_time_override.steady: Tester failed, reason: CRASH
restart/start_time_override.steady:
restart/start_time_override.steady ............................................................ FAILED (CRASH)
restart/start_time_override.start_time_override_non_zero ........................... [skipped dependency] SKIP
executioners/eigen_executioners.test_coupled_nonlinear_eigen: Working Directory: /home/abdo2/projects/moose/test/tests/executioners/eigen_executioners
executioners/eigen_executioners.test_coupled_nonlinear_eigen: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i ne_coupled.i --error --error-unused --error-override --no-gdb-backtrace
executioners/eigen_executioners.test_coupled_nonlinear_eigen: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_coupled_nonlinear_eigen: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
executioners/eigen_executioners.test_coupled_nonlinear_eigen:
executioners/eigen_executioners.test_coupled_nonlinear_eigen:
executioners/eigen_executioners.test_coupled_nonlinear_eigen: Exit Code: 127
executioners/eigen_executioners.test_coupled_nonlinear_eigen: ################################################################################
executioners/eigen_executioners.test_coupled_nonlinear_eigen: Tester failed, reason: CRASH
executioners/eigen_executioners.test_coupled_nonlinear_eigen:
executioners/eigen_executioners.test_coupled_nonlinear_eigen .................................. FAILED (CRASH)
restart/restart_transient_from_transient.pseudo_trans_with_2subs: Working Directory: /home/abdo2/projects/moose/test/tests/restart/restart_transient_from_transient
restart/restart_transient_from_transient.pseudo_trans_with_2subs: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i pseudo_trans_with_2subs.i --error --error-unused --error-override --no-gdb-backtrace
restart/restart_transient_from_transient.pseudo_trans_with_2subs: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
restart/restart_transient_from_transient.pseudo_trans_with_2subs: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
restart/restart_transient_from_transient.pseudo_trans_with_2subs:
restart/restart_transient_from_transient.pseudo_trans_with_2subs:
restart/restart_transient_from_transient.pseudo_trans_with_2subs: Exit Code: 127
restart/restart_transient_from_transient.pseudo_trans_with_2subs: ################################################################################
restart/restart_transient_from_transient.pseudo_trans_with_2subs: Tester failed, reason: CRASH
restart/restart_transient_from_transient.pseudo_trans_with_2subs:
restart/restart_transient_from_transient.pseudo_trans_with_2subs .............................. FAILED (CRASH)
restart/restart_transient_from_transient.restart_trans_from_pseudo_trans_with_2subs  [skipped dependency] SKIP
restart/new_dt.test_restart ........................................................ [skipped dependency] SKIP
restart/new_dt.test_part1: Working Directory: /home/abdo2/projects/moose/test/tests/restart/new_dt
restart/new_dt.test_part1: Running command: /home/abdo2/projects/moose/test/moose_test-opt -i new_dt.i --error --error-unused --error-override --no-gdb-backtrace
restart/new_dt.test_part1: /home/abdo2/projects/moose/test/moose_test-opt: error while loading shared libraries: libquadmath.so.0: cannot open shared object file: No such file or directory
restart/new_dt.test_part1:
restart/new_dt.test_part1:
restart/new_dt.test_part1: Exit Code: 127
restart/new_dt.test_part1: ################################################################################
restart/new_dt.test_part1: Tester failed, reason: CRASH
restart/new_dt.test_part1:
restart/new_dt.test_part1 ..................................................................... FAILED (CRASH)
runWorker Exception: Traceback (most recent call last):
  File "/home/abdo2/projects/moose/python/TestHarness/schedulers/Scheduler.py", line 445, in runJob
    self.queueJobs(Jobs, j_lock)
  File "/home/abdo2/projects/moose/python/TestHarness/schedulers/Scheduler.py", line 260, in queueJobs
    self.__status_pool_jobs.add(self.status_pool.apply_async(self.jobStatus, (job, Jobs, j_lock)))
  File "/home/abdo2/miniconda3/envs/moose/lib/python3.7/multiprocessing/pool.py", line 362, in apply_async
    raise ValueError("Pool not running")
ValueError: Pool not running

runWorker Exception: Traceback (most recent call last):
  File "/home/abdo2/projects/moose/python/TestHarness/schedulers/Scheduler.py", line 445, in runJob
    self.queueJobs(Jobs, j_lock)
  File "/home/abdo2/projects/moose/python/TestHarness/schedulers/Scheduler.py", line 260, in queueJobs
    self.__status_pool_jobs.add(self.status_pool.apply_async(self.jobStatus, (job, Jobs, j_lock)))
  File "/home/abdo2/miniconda3/envs/moose/lib/python3.7/multiprocessing/pool.py", line 362, in apply_async
    raise ValueError("Pool not running")
ValueError: Pool not running

runWorker Exception: Traceback (most recent call last):
  File "/home/abdo2/projects/moose/python/TestHarness/schedulers/Scheduler.py", line 445, in runJob
    self.queueJobs(Jobs, j_lock)
  File "/home/abdo2/projects/moose/python/TestHarness/schedulers/Scheduler.py", line 266, in queueJobs
    self.__runner_pool_jobs.add(self.run_pool.apply_async(self.runJob, (job, Jobs, j_lock)))
  File "/home/abdo2/miniconda3/envs/moose/lib/python3.7/multiprocessing/pool.py", line 362, in apply_async
    raise ValueError("Pool not running")
ValueError: Pool not running
runWorker Exception: Traceback (most recent call last):
  File "/home/abdo2/projects/moose/python/TestHarness/schedulers/Scheduler.py", line 445, in runJob
    self.queueJobs(Jobs, j_lock)
  File "/home/abdo2/projects/moose/python/TestHarness/schedulers/Scheduler.py", line 266, in queueJobs
    self.__runner_pool_jobs.add(self.run_pool.apply_async(self.runJob, (job, Jobs, j_lock)))
  File "/home/abdo2/miniconda3/envs/moose/lib/python3.7/multiprocessing/pool.py", line 362, in apply_async
    raise ValueError("Pool not running")
ValueError: Pool not running




Final Test Results:
--------------------------------------------------------------------------------------------------------------
nodalkernels/constant_rate.group/threaded .......................................... [skipped dependency] SKIP
restart/restart_add_variable.add_variable_restart .................................. [skipped dependency] SKIP
restart/start_time_override.default_start_timestart ................................ [skipped dependency] SKIP
restart/start_time_override.start_time_override_zero ............................... [skipped dependency] SKIP
restart/start_time_override.start_time_override_non_zero ........................... [skipped dependency] SKIP
restart/restart_transient_from_transient.restart_trans_from_pseudo_trans_with_2subs  [skipped dependency] SKIP
restart/new_dt.test_restart ........................................................ [skipped dependency] SKIP
indicators/analytical_indicator.test .......................................................... FAILED (CRASH)
fixedbugs/i8575.test .......................................................................... FAILED (CRASH)
indicators/gradient_jump_indicator.test ....................................................... FAILED (CRASH)
indicators/laplacian_jump_indicator.group/test_biharmonic ..................................... FAILED (CRASH)
indicators/value_jump_indicator.test .......................................................... FAILED (CRASH)
executioners/solve_type_linear.linear_with_full_smp ........................................... FAILED (CRASH)
executioners/nullspace.test_singular .......................................................... FAILED (CRASH)
executioners/executioner.test_steady_adapt .................................................... FAILED (CRASH)
indicators/laplacian_jump_indicator.group/test_biharmonic_weak_bc ............................. FAILED (CRASH)
executioners/nullspace.test_singular_contaminated ............................................. FAILED (CRASH)
executioners/executioner.test_steady_state_check .............................................. FAILED (CRASH)
indicators/laplacian_jump_indicator.group/test_biharmonic_transient ........................... FAILED (CRASH)
executioners/pp_binding.pp_binding .......................................... FAILED (EXPECTED OUTPUT MISSING)
executioners/fixed_point.test_fixed_point ..................................................... FAILED (CRASH)
executioners/executioner.test_steady .......................................................... FAILED (CRASH)
executioners/fixed_point.test_fixed_point_nonlinear ........................................... FAILED (CRASH)
executioners/eigen_executioners.test_inverse_power_method ..................................... FAILED (CRASH)
executioners/executioner.test_transient ....................................................... FAILED (CRASH)
executioners/adapt_and_modify.test ............................................................ FAILED (CRASH)
executioners/transient_sync_time.testsynctimes ................................................ FAILED (CRASH)
executioners/arbitrary_execute_flag.test .................................... FAILED (EXPECTED OUTPUT MISSING)
executioners/nl_divergence_tolerance.test ..................................................... FAILED (CRASH)
executioners/executioner.test_print_automatic_scaling_factors_true .......... FAILED (EXPECTED OUTPUT MISSING)
executioners/eigen_executioners.test_nonlinear_eigen .......................................... FAILED (CRASH)
executioners/steady_time.test_steady_time ..................................................... FAILED (CRASH)
executioners/transient_sync_time.test_time_out_interval ....................................... FAILED (CRASH)
executioners/full_jacobian_thread_active_bcs.full_jacobian_thread_active_bcs FAILED (EXPECTED OUTPUT NOT FOUND)
executioners/time_period.test ................................................................. FAILED (CRASH)
executioners/executioner.test_print_automatic_scaling_factors_false ........................... FAILED (CRASH)
nodalkernels/penalty_dirichlet.test ........................................................... FAILED (CRASH)
nodalkernels/high_order_time_integration.test ................................................. FAILED (CRASH)
executioners/steady_time.test_steady_set_time ................................................. FAILED (CRASH)
executioners/eigen_executioners.test_nonlinear_eigen_parallel ................................. FAILED (CRASH)
nodalkernels/constraint_enforcement.lower_bound/exo ........................................... FAILED (CRASH)
nodalkernels/constraint_enforcement.lower_bound/non_singular ................ FAILED (EXPECTED OUTPUT MISSING)
nodalkernels/constant_rate.group/test ......................................................... FAILED (CRASH)
executioners/eigen_executioners.test_nonlinear_eigen_material ................................. FAILED (CRASH)
nodalkernels/jac_test.test .................................................................... FAILED (CRASH)
nodalkernels/scaling.scaling ................................................ FAILED (EXPECTED OUTPUT MISSING)
nodalkernels/constraint_enforcement.upper_bound/exo ........................................... FAILED (CRASH)
executioners/eigen_executioners.test_normal_eigenkernel ....................................... FAILED (CRASH)
nodalkernels/jac_test.group/block_jacobian_test ........................... FAILED (EXPECTED OUTPUT NOT FOUND)
nodalkernels/jac_test.group/bc_jacobian_test .............................. FAILED (EXPECTED OUTPUT NOT FOUND)
nodalkernels/constraint_enforcement.upper_bound/non_singular ................ FAILED (EXPECTED OUTPUT MISSING)
restart/restart_add_variable.transient_with_stateful .......................................... FAILED (CRASH)
executioners/eigen_executioners.test_another_nonlinear_eigen .................................. FAILED (CRASH)
nodalkernels/constraint_enforcement.upper_and_lower_bound/exo ................................. FAILED (CRASH)
restart/start_time_override.steady ............................................................ FAILED (CRASH)
executioners/eigen_executioners.test_coupled_nonlinear_eigen .................................. FAILED (CRASH)
restart/restart_transient_from_transient.pseudo_trans_with_2subs .............................. FAILED (CRASH)
restart/new_dt.test_part1 ..................................................................... FAILED (CRASH)
--------------------------------------------------------------------------------------------------------------

Ran 51 tests in 5.5 seconds.
0 passed, 7 skipped, 0 pending, 51 FAILED
MAX FAILURES REACHED

-------------------------------------------------------------------------------------------------------------------------------------------------------------

Jason Miller

unread,
Nov 4, 2020, 1:16:12 PM11/4/20
to moose-users
You need to do what I suggested in my second email to you:


Jason Miller <m.jason...@gmail.com>

Tue, Nov 3, 2:07 PM (21 hours ago)

to moose-users

Abdelhak MISSAOUI

unread,
Nov 4, 2020, 4:47:36 PM11/4/20
to moose...@googlegroups.com
Thank you Jason, Now i want to use Zapdos in MOOSE, when i run a Zapdos input (in problems) using "cd ~/projects/zapdos/problems; ../zapdos-opt -i mean_en.i --color off 2>&1 | tee log.txt" i get this error:
*** ERROR ***
cannot locate mesh file '/home/abdo2/projects/zapdos/problems/GEC_mesh.msh'

Stack frames: 14
0: libMesh::print_trace(std::ostream&)
1: moose::internal::mooseErrorRaw(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)
2: callMooseErrorRaw(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, MooseApp*)
3: FileMesh::buildMesh()
4: MooseMesh::init()
5: SetupMeshAction::act()
6: Action::timedAct()
7: ActionWarehouse::executeActionsWithAction(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
8: ActionWarehouse::executeAllActions()
9: MooseApp::runInputFile()
10: MooseApp::run()
11: ../zapdos-opt(+0x41d1) [0x55ad70cfc1d1]
12: __libc_start_main
13: ../zapdos-opt(+0x44af) [0x55ad70cfc4af]
application called MPI_Abort(MPI_COMM_WORLD, 1) - process 0
[unset]: write_line error; fd=-1 buf=:cmd=abort exitcode=1
:
system msg for write_line failure : Bad file descriptor



Casey Icenhour

unread,
Nov 4, 2020, 5:26:18 PM11/4/20
to moose...@googlegroups.com
Hello,
I am one of the developers of Zapdos. You need to generate GEC_mesh.msh from GEC_mesh.geo in the "problems" directory with the gmsh application (http://gmsh.info/). Install gmsh, load the GEC_mesh.geo file, and then Select "2D" under the Mesh menu. It may save GEC_mesh.msh in your problems directory or your user directory, so please check both places and move the file as needed. Then you should be able to run the input file. Let me know if you have further issues.

Thanks,
Casey

Casey Icenhour

unread,
Nov 4, 2020, 5:27:59 PM11/4/20
to moose...@googlegroups.com
I also encourage you to post any Zapdos-specific issues to the Zapdos User Group at https://groups.google.com/forum/#!forum/zapdos-users

Abdelhak MISSAOUI

unread,
Nov 5, 2020, 3:07:15 PM11/5/20
to moose...@googlegroups.com
Hello Casey, thank you for your replies,
now i think i can run the existing files, finally i get this :
------------------------------------------------------------------------------------------------------------------------------------
Time Step 0, time = 0

Postprocessor Values:
+----------------+-------------------+
| time           | InversePlasmaFreq |
+----------------+-------------------+
|   0.000000e+00 |      1.772568e-09 |
+----------------+-------------------+

Outputting out
.................                                                                          [ 18.99 s]

Time Step 1, time = 1e-09, dt = 1e-09
Computing initial residual .............................................                   [ 46.35 s]

Performing automatic scaling calculation

 0 Nonlinear |R| = 3.538702e+17

-------------------------------------------------------------------------------------------------------------------------------
is there a problem? first, i want to run existing files.. is there another modifications that i should add? I think I get a file out.e. if this file contains data how can i recover it?



Casey Icenhour

unread,
Nov 5, 2020, 6:09:34 PM11/5/20
to moose...@googlegroups.com
That output looks normal for the beginning of a MOOSE / Zapdos simulation. You also see a postprocessor output based on the initial conditions and the beginning of your first timestep.

"out.e" can be viewed in the Paraview visualization tool (https://www.paraview.org/) or in the Peacock tool provided with MOOSE (https://mooseframework.inl.gov/application_usage/peacock.html)

Abdelhak MISSAOUI

unread,
Nov 9, 2020, 1:47:34 PM11/9/20
to moose...@googlegroups.com
Hello Casey, thank you for your reply . when i run the file i get this:
(moose) abdo2@abdo2-VirtualBox:~/projects/zapdos/problems$ cd projects/zapdos/problems; ../zapdos-opt -i Lymberopoulos_with_argon_metastables_2D_At1Torr.i --color off 2>&1 | tee log.txt
bash: cd: projects/zapdos/problems: No such file or directory
bash: ../zapdos-opt: No such file or directory
(moose) abdo2@abdo2-VirtualBox:~/projects/zapdos/problems$
________________________________________________________________________
Abdelhak MISSAOUI
Ph.D student
Laboratory of Physic of Matter and Radiation  (LPMR)
Mohammed first university - Faculty of Sciences
Phone : +212611782643 
_________________________________________________________________________


Casey Icenhour

unread,
Nov 9, 2020, 6:28:17 PM11/9/20
to moose-users
To all following this thread or coming across it later:  this conversation has been continued on the Zapdos User Group.

Reply all
Reply to author
Forward
0 new messages