trick/test/SIM_test_templates/RUN_test/unit_test.py
Scott Fennell ff771f7bd6
Centos8 compat (#908)
make print statements in tests python3 compatible
2019-11-18 10:10:33 -06:00

19 lines
309 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()