History log of /petsc/config/gmakegentest.py (Results 26 – 50 of 304)
Revision Date Author Comments
# 3c9c10a1 01-Aug-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-typo' into 'main'

Fix typos

See merge request petsc/petsc!6771


# 145b44c9 31-Jul-2023 Pierre Jolivet <pierre@joliv.et>

Fix typos


# 6c37f76f 27-Jul-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'tisaac/feature-log-handler' into 'main'

Deglobalize logging into PetscLogHandler and PetscLogState

See merge request petsc/petsc!6709


# d68d54c7 13-Jul-2023 Toby Isaac <toby.isaac@gmail.com>

Testing: Add 'temporaries:' field to the test suite

It's nice when the output that needs to be tested goes to stdout, and we
can do that with our own viewers, but some output that needs to be
tested

Testing: Add 'temporaries:' field to the test suite

It's nice when the output that needs to be tested goes to stdout, and we
can do that with our own viewers, but some output that needs to be
tested can only be written to temporary files. An example is MPE
logging, which produces a .clog2 file, let's say it's called ex30.clog2.

We can access that file through the test suite:

/*TEST

test:
filter: strings ex30.clog2 | grep "Petsc"

TEST*/

But the problem is that ex30.clog2 will stay in the test build
directory. Suppose the test breaks and the program does not write
the ex30.clog2 file: then a stale version of that file will be read.

This change allows us to write the test as:

/*TEST

test:
temporaries: ex30.clog2
filter: strings ex30.clog2 | grep "Petsc"

TEST*/

which indices that (the localized version of) `rm -f ex30.clog2` will
run before the test.

show more ...


# 7c442164 26-Jul-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2023-06-28/fix-test-harness-for-other-packages' into 'main'

add support for using the test harness for application code

See merge request petsc/petsc!6645


# 2022a217 28-Jun-2023 Barry Smith <bsmith@mcs.anl.gov>

Fix bug that causes crash if --verbose is used

Commit-type: bug, testing


# 0fe358ee 14-May-2023 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# c8ba991b 14-May-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2023-05-09/update-manual-additional-information/release' into 'release'

Update some discussions in the users manual

See merge request petsc/petsc!6442


# 7de69702 10-May-2023 Barry Smith <bsmith@mcs.anl.gov>

Update some discussions in the users manual

Also fix 32bit, 64bit, 32 bit, 64 bit throughout and blas and blas/lapack


# fa680562 27-Mar-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jose/python-raw-strings' into 'main'

python: use raw strings where appropriate

See merge request petsc/petsc!6230


# 3be2e2fd 26-Mar-2023 Jose E. Roman <jroman@dsic.upv.es>

python: use raw strings where appropriate

Reported by @prj- on petsc-maint


# d7876028 16-Mar-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'balay/ci-remove-opensolaris' into 'main'

CI: remove opensolaris jobs

See merge request petsc/petsc!6157


# 9fd2a872 15-Mar-2023 Satish Balay <balay@mcs.anl.gov>

CI: disable failing tests with 32bitptr [when migrated from opensolaris]


# 986f41ea 13-Mar-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jczhang/add-mpiexec-tail' into 'main'

Add --with-mpiexec-tail to add arguments right before user's executable

See merge request petsc/petsc!6167


# 64f7b273 09-Mar-2023 Junchao Zhang <jczhang@anl.gov>

Config: add --with-mpiexec-tail to add arguments right before user's executable

So that we are albe to do mpiexec <mpiexec_flags> -n <np> <mpiexec_tail> ./ex1


# a207d08e 30-Oct-2022 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# ed31fb71 30-Oct-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jose/codespell-typos' into 'release'

A few more codespell fixes

See merge request petsc/petsc!5786


# d5b43468 29-Oct-2022 Jose E. Roman <jroman@dsic.upv.es>

A few more codespell fixes


# 755922eb 17-Oct-2022 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# e4ead62a 14-Oct-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-10-06/test-harness-env-keyword' into 'release'

Add env: keyword to test harness

See merge request petsc/petsc!5721


# fa236c6a 06-Oct-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

Add env: keyword to test harness


# 3c3434fa 13-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-09-13/faster-gmakegentest' into 'main'

Faster gmakegentest.py

See merge request petsc/petsc!5627


# 61c69bfb 13-Sep-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

Apply permissions when file is opened rather than afterwards, this results in orders of magnitude faster performance on NFS filesystems


# 5f2abdd3 25-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/feature-ksphpddm-fp16-ci' into 'main'

Partial support for __fp16 in KSPHPDDM

See merge request petsc/petsc!5543


# f573d068 23-Aug-2022 Pierre Jolivet <pierre@joliv.et>

gmakegentest: fix precision_types


12345678910>>...13