History log of /petsc/src/sys/tests/ex66.c (Results 1 – 10 of 10)
Revision Date Author Comments
# e4a561a4 07-Oct-2024 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 6827d6b3 07-Oct-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/asan' into 'release'

address sanitizer fixes

See merge request petsc/petsc!7927


# 0ef292d3 05-Oct-2024 Stefano Zampini <stefano.zampini@gmail.com>

configure: detect GNU address sanitizer

disable PetscCheckPointer when using a sanitizer


# 732aec7a 22-Sep-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/remove-cast' into 'main'

Use NULL or nullptr instead of casted 0

See merge request petsc/petsc!7857


# c8025a54 21-Sep-2024 Pierre Jolivet <pierre@joliv.et>

Use NULL or nullptr instead of casted 0


# 9c861a52 07-Aug-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'tisaac/feature-malloc-dump-finalize' into 'main'

Sys: Introduce -on_error_malloc_dump and PETSC_ERR_MEM_LEAK

See merge request petsc/petsc!6745


# 9beb8f72 07-Aug-2023 Toby Isaac <toby.isaac@gmail.com>

Sys: Introduce -on_error_malloc_dump and PETSC_ERR_MEM_LEAK

To avoid a malloc dump that swamps the error output of another error,
this makes calling `PetscMallocDump()` in the error handlers opt-in,

Sys: Introduce -on_error_malloc_dump and PETSC_ERR_MEM_LEAK

To avoid a malloc dump that swamps the error output of another error,
this makes calling `PetscMallocDump()` in the error handlers opt-in,
with a different flag (`-on_error_malloc_dump`) from the flag for
calling `PetscMallocDump()` in `PetscFinalize()` (just `-malloc_dump`).

The addition of `PETSC_ERR_MEM_LEAK` allows for better error messages:
`~PoolAllocator()` can detect a memory leak even if the system
is not out of memory, so the error message will not say that for
`PETSC_ERR_MEM_LEAK`.

show more ...


# 479160d7 12-Jul-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2023-07-02/nice-error-message-when-first-error-is-not-properly-handled' into 'main'

When the user does not properly handle a returned error code and another error...

See merge r

Merge branch 'barry/2023-07-02/nice-error-message-when-first-error-is-not-properly-handled' into 'main'

When the user does not properly handle a returned error code and another error...

See merge request petsc/petsc!6655

show more ...


# e9a33e21 09-Jul-2023 Barry Smith <bsmith@mcs.anl.gov>

Need to have test harness remove -options_left to tests that test handling of errors in tests

Commit-type: testing


# 15858b40 03-Jul-2023 Barry Smith <bsmith@mcs.anl.gov>

When the user does not properly handle a returned error code and another error is detected, print a very useful message indicating what has happended.

Reported-by: Stefano Zampini