mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
ba6a00315e
Fixing the unit tests that broke because of my changes. Memory Manager tests need to be compiled with c++11, and the STL unit test was using a variable that did not exist anymore. [Issue: x]
14 lines
212 B
Python
14 lines
212 B
Python
|
|
def main():
|
|
|
|
trick.checkpoint_post_init(True)
|
|
trick.checkpoint_end(True)
|
|
|
|
# Data recording HDF5 test
|
|
trick.exec_set_freeze_frame(0.10)
|
|
trick.stop(5.0)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|