Browse Source

Added explanations on how to update gtest in the future.

tempestpy_adaptions
Tim Quatmann 3 years ago
parent
commit
32ddadea17
No known key found for this signature in database GPG Key ID: 6EDE19592731EEC3
  1. 14
      doc/update_resources.md

14
doc/update_resources.md

@ -13,4 +13,16 @@ In case a new patch needs to be created follow these steps:
2. Checkout a new branch
3. Apply the old patch via `git apply $STORM_DIR/resources/3rdparty/patches/eigen.patch`
4. Resolve issues, make changes, and commit them
5. Create a new patch file via `git format-patch <tag> --stdout > eigen.patch`, where `<tag>` is the tag, branch or commit from step 1
5. Create a new patch file via `git format-patch <tag> --stdout > eigen.patch`, where `<tag>` is the tag, branch or commit from step 1
## googletest / gtest
To update gtest, simply download the new sources from [here](https://github.com/google/googletest/releases) and put them to `$STORM_DIR/resources/3rdparty/googletest`.
The currently shipped version can be shown using
```console
grep GOOGLETEST_VERSION $STORM_DIR/resources/3rdparty/googletest/CMakeLists.txt
```
We add some extra code to gtest located in `$STORM_DIR/src/test/storm_gtest.h`. Note that our code might not be compatible with future versions of gtest.
Loading…
Cancel
Save