History log of /petsc/src/sys/tests/options/ex55.c (Results 26 – 45 of 45)
Revision Date Author Comments
# bda77271 20-Jul-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-06-24/linenumbers-petscstack' into 'main'

Fixes/improvements for PETSc stack handling

See merge request petsc/petsc!5368


# 660278c0 26-Jun-2022 Barry Smith <bsmith@mcs.anl.gov>

Add PETSc CI mode to allow better handling of errors and system dependent output when running in test harness

-petsc_ci - automatically set for all runs in test harness

-petsc_ci_portable_error_out

Add PETSc CI mode to allow better handling of errors and system dependent output when running in test harness

-petsc_ci - automatically set for all runs in test harness

-petsc_ci_portable_error_output - ensures all error messages (when possible are system and compiler information),
should be only used in tests that are explicitly testing the error handling

This allows proper comparisons of runs on different machines and when errors are intentionally triggered to test error handling

Commit-type: error-checking, testing-fix
/spend 5h

show more ...


# dc34d9f7 17-Jun-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/fix-function-composition' into 'main'

fix function composition

See merge request petsc/petsc!5274


# 2e956fe4 24-May-2022 Stefano Zampini <stefano.zampini@gmail.com>

PetscObjectFunctionCompose: clean up composed functions at Destroy time


# f882803c 26-Mar-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-02-23/variadic-chkerr' into 'main'

Variadic CHKERRQ()

See merge request petsc/petsc!4889


# 9566063d 25-Mar-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

The great renaming:

- CHKERRQ() -> PetscCall()
- CHKERRV() -> PetscCallVoid()
- CHKERRMPI() -> PetscCallMPI()
- CHKERRABORT() -> PetscCallAbort()
- CHKERRCONTINUE() -> PetscCallContinue()
- CHKERRXX

The great renaming:

- CHKERRQ() -> PetscCall()
- CHKERRV() -> PetscCallVoid()
- CHKERRMPI() -> PetscCallMPI()
- CHKERRABORT() -> PetscCallAbort()
- CHKERRCONTINUE() -> PetscCallContinue()
- CHKERRXX() -> PetscCallThrow()
- CHKERRCXX() -> PetscCallCXX()
- CHKERRCUDA() -> PetscCallCUDA()
- CHKERRCUBLAS() -> PetscCallCUBLAS()
- CHKERRCUSPARSE() -> PetscCallCUSPARSE()
- CHKERRCUSOLVER() -> PetscCallCUSOLVER()
- CHKERRCUFFT() -> PetscCallCUFFT()
- CHKERRCURAND() -> PetscCallCURAND()
- CHKERRHIP() -> PetscCallHIP()
- CHKERRHIPBLAS() -> PetscCallHIPBLAS()
- CHKERRHIPSOLVER() -> PetscCallHIPSOLVER()
- CHKERRQ_CEED() -> PetscCallCEED()
- CHKERR_FORTRAN_VOID_FUNCTION() -> PetscCallFortranVoidFunction()
- CHKERRMKL() -> PetscCallMKL()
- CHKERRMMG() -> PetscCallMMG()
- CHKERRMMG_NONSTANDARD() -> PetscCallMMG_NONSTANDARD()
- CHKERRCGNS() -> PetscCallCGNS()
- CHKERRPTSCOTCH() -> PetscCallPTSCOTCH()
- CHKERRSTR() -> PetscCallSTR()
- CHKERRTC() -> PetscCallTC()

show more ...


# b122ec5a 24-Mar-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

PetscInitialize() and PetscFinalize() wrapped:

- ierr = PetscInitialize();if (ierr) return ierr;
+ CHKERRQ(PetscInitialize());

- ierr = PetscFinalize();
- return ierr;
+ CHKERRQ(PetscFinalize());
+

PetscInitialize() and PetscFinalize() wrapped:

- ierr = PetscInitialize();if (ierr) return ierr;
+ CHKERRQ(PetscInitialize());

- ierr = PetscFinalize();
- return ierr;
+ CHKERRQ(PetscFinalize());
+ return 0;

show more ...


# 5f80ce2a 24-Feb-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

chkerr and friends wrapped


# 79982354 16-Nov-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2021-11-02/attribute-format-sys' into 'main'

Feature: PETSC_ATTRIBUTE_FORMAT - sys

See merge request petsc/petsc!4520


# 55ed0643 15-Nov-2021 Jacob Faibussowitsch <jacob.fai@gmail.com>

apply PETSC_ATTRIBUTE_FORMAT fixes to sys tests


# f482f063 21-Jun-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/checkstack' into 'main'

Check Push/Pop

See merge request petsc/petsc!4077


# 362febee 10-Jun-2021 Stefano Zampini <stefano.zampini@gmail.com>

PetscStack : check for correct push/pop

Enforce checkstack for CI jobs
Fixes from testsuite


# 6bac9852 13-Jan-2021 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# a948ac05 11-Jan-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'haplav/fix-help-option' into 'release'

Consume -help in PetscOptionsSetValue() so it can be set from RC file etc.

See merge request petsc/petsc!3537


# c524e44c 06-Jan-2021 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

sys_tests_options-ex55: test -help from options file


# 69a0b2a7 29-Sep-2020 Satish Balay <balay@mcs.anl.gov>

fix ex55 to work with both release and development version strings


# 99c99c7f 03-Jul-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'haplav/remove-h-v-options' into 'master'

remove -h -v options and wipe them out from docs

See merge request petsc/petsc!2929


# 98fcc90b 27-Jun-2020 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

Add sys_tests_options-ex55_5% for -help/-help intro/-version.

* Rename sys_tests_options-ex55_2_skip_from_file to sys_tests_options-ex55_4
* Add missing makefile.
* Remove unneeded filtering as ther

Add sys_tests_options-ex55_5% for -help/-help intro/-version.

* Rename sys_tests_options-ex55_2_skip_from_file to sys_tests_options-ex55_4
* Add missing makefile.
* Remove unneeded filtering as there is -options_left 0

show more ...


# 08a3f2ed 26-Jun-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'haplav/improve-options-monitor' into 'master'

improve options monitor

See merge request petsc/petsc!2912


# c522b486 04-Jun-2020 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

Add sys_tests-options-ex55, test new options monitoring and precedence.

It needs a separate dir because it tests .petscrc petscrc


12