test-drive
test-drive copied to clipboard
The simple testing framework
The last release (`v0.4.0`) is from November 2021. I wonder if it would be time to create a new release. Here are the main changes since `v0.5.0` (or. `v0.4.1`): *...
Currently tests are limited to ifort 2021.6. It might be good to test more versions/support if possible/document if not? Newer ifort succeeds with meson and cmake on mac/linux but I...
I have attached two changed source files (replacing src/testdrive.f90 and test/main.f90) as well as the resulting JUnit.xml file that is written along with the screen output. This xml is doing...
Dear Sebastian (@awvwgk), I use your nice and neat FORTRAN test driver. Thank you for sharing it! To integrate the FORTRAN tests into an Azure DevOps build pipeline (means: let...
for tests developed using this, which complicates tracking down memory issues when testing code.
This PR updates the CMake module in the README to allow a git tag to be specified when using the `fetch` method. This allows people to use a specific version...
Currently the test status is only printed when the tests are run, but there is no summary in the end. Having a list of all failed unit tests after the...
The `fpm` new should use some testing framework and set things up, so depend on `test-drive` and add a simple test. Then you can easily extend it as needed. We...
Currently, `test-drive` uses [this paradigm](https://github.com/fortran-lang/test-drive/blob/dc60eaf07a245dbb856c0d467e8a9a5b5f5d4204/README.md?plain=1#L34): ```fortran testsuites = [ & new_testsuite("suite1", collect_suite1), & new_testsuite("suite2", collect_suite2) & ] ``` In `fpm test -V` with default flags will result in the following...