[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54869] [PATCH v2 1/7] gnu: fenics-dolfin: Honor #:tests? flag.
From: |
Maxime Devos |
Subject: |
[bug#54869] [PATCH v2 1/7] gnu: fenics-dolfin: Honor #:tests? flag. |
Date: |
Fri, 22 Apr 2022 19:46:52 +0200 |
User-agent: |
Evolution 3.38.3-1 |
Paul A. Patience schreef op vr 22-04-2022 om 11:53 [+0000]:
> - (invoke "ctest" "-R" "demo" "-R" "mpi")))))))
> + (lambda* (#:key tests? #:allow-other-keys)
> + (when tests?
> + (and (invoke "make" "unittests")
> + (invoke "make" "demos")
> + (invoke "ctest" "-R" "unittests")
> + (invoke "ctest" "-R" "demo" "-R" "serial")
> + (invoke "ctest" "-R" "demo" "-R" "mpi"))))))))
The 'and' is pointless, it can be removed --- IIUC, 'invoke' throws
exceptions, it doesn't return #false. Anyway, honouring #:tests? is
nice (for cross-compilation and --without-tests=...).
Greetings,
Maxime.
signature.asc
Description: This is a digitally signed message part
- [bug#54869] [PATCH 0/5] gnu: python-vedo: Update to 2022.2.0 and sanity-check failures., Paul A. Patience, 2022/04/11
- [bug#54871] [PATCH 2/5] gnu: fenics: Honor #:tests? flag., Paul A. Patience, 2022/04/11
- [bug#54873] [PATCH 5/5] gnu: python-vedo: Update to 2022.2.0., Paul A. Patience, 2022/04/11
- [bug#54870] [PATCH 1/5] gnu: fenics-dolfin: Honor #:tests? flag., Paul A. Patience, 2022/04/11
- [bug#54872] [PATCH 3/5] gnu: python-vedo: Honor #:tests? flag., Paul A. Patience, 2022/04/11
- [bug#54874] [PATCH 4/5] gnu: python-vedo: Remove input labels., Paul A. Patience, 2022/04/11
- [bug#54869] [PATCH v2 0/7] gnu: python-vedo: Update to 2022.2.0., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 3/7] gnu: fenics: Fix sanity check., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 2/7] gnu: fenics: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 1/7] gnu: fenics-dolfin: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 1/7] gnu: fenics-dolfin: Honor #:tests? flag.,
Maxime Devos <=
- [bug#54869] [PATCH v2 4/7] gnu: python-vedo: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 7/7] gnu: python-vedo: Update to 2022.2.0., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 6/7] gnu: python-vedo: Disable sanity check., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v2 5/7] gnu: python-vedo: Remove input labels., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v3 0/7] gnu: python-vedo: Update to 2022.2.0., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v3 2/7] gnu: fenics: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v3 3/7] gnu: fenics: Fix sanity check., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v3 1/7] gnu: fenics-dolfin: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v3 4/7] gnu: python-vedo: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#54869] [PATCH v3 6/7] gnu: python-vedo: Disable sanity check., Paul A. Patience, 2022/04/22