[ Thread Index |
Date Index
| More lists.mumps2py.org/discuss Archives
]
Howdy,
I've been adding test files for every piece of functionality that I add
support for.
However, as I add, I also need to go back and tweak what I previously wrote.
Standard practice should be to retest everything to make sure that
nothing broke.
....in an automated sort of way.
Basically, I need a set of input Mumps files, and known good output from
the translated python programs.
for each input file, I need to translate it to Python, run the python
version, and compare the output against the known good output.
if it matches exactly, then all is well and good.
if it doesn't, then there's probably a bug that needs fixing, or a test
that needs to be updated,...or something.
I need to be able to run this regression test suite from Mumps2Py_ui,
and I need to be able to add a test to the suite from Mumps2Py_ui.
And that is what I'm doing next.
Cheers,
-Patrick
---