-
Notifications
You must be signed in to change notification settings - Fork 92
refactor: Reorganise constitutive tests #3581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
refactor: Reorganise constitutive tests #3581
Conversation
I think it would be better to make the drivers standalone executables and transform these tests into integratedTests. |
These tests are complete geos input files that can be run directly with the |
…ps://github.com/GEOS-DEV/GEOS into refactor/dkachuma/reorganise-constitutive-tests
Returns: | ||
geos.hdf5_wrapper: The hdf5 wrapper for the data | ||
""" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are you doing this so that you can then use a curve_check
? This is good for now. In the future we may want to simply output an hdf5 directly from the constitutiveDriver.
@@ -53,24 +53,4 @@ | |||
</Events> | |||
|
|||
<!-- SPHINX_PVTDRIVER_EVENTS_END --> | |||
<!-- Mesh is not used, but GEOSX throws an error without one. Will resolve soon--> | |||
<Mesh> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
were you able to resolver the need for the mesh? I don't see it in this PR but if that's the case, it's great!
The directory
src/coreComponents/unitTests/constitutiveTests
is getting clattered with constitutive driver based tests. This PR moves all the driver based test xmls into a sub-directorydriverTests
and all their baselines tobaselines
. The idea is to keepsrc/coreComponents/unitTests/constitutiveTests
for the actual c++ tests.