mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 06:27:49 +00:00
90fd0ff9f8
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
19 lines
305 B
Python
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()
|
|
|
|
|