trick/test/SIM_test_templates/RUN_test/unit_test.py
Alex Lin 90fd0ff9f8 Split test sims and fun sims into separate directories.
Moved SIM_test_ip and a couple of other sims that depend on the same model set
to a new test directory.  I'm doing a couple of sims at a time.

refs #191
2016-02-23 10:23:55 -06:00

19 lines
305 B
Python

import math
from trick.unit_test import *
def main():
tso.tobj.TTT_var.aa = 1000
tso.tobj.TTT_var.bb = 2000
print "tso.tobj.TTT_var.aa =" , tso.tobj.TTT_var.aa
print "tso.tobj.TTT_var.bb =" , tso.tobj.TTT_var.bb
trick.checkpoint_end(True)
if __name__ == "__main__":
main()