Commit be5504b4 authored by Oxez's avatar Oxez
Browse files

makeTruth script may not be worth the effort to call the script

parent 8c6f7b45
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
'''
Script to create truthData for unitTests. This might be more work
using the scripts then just documenting what you have to do to save
output as Truth
'''

unitTestExecutable = sys.argv[1]

unitTestName = unitTestExecutable.split("_test_")[1] + ".truth"

os.system(unitTestExecutable + ">&" + unitTestName)