Commit 145b3156 authored by Dimitris Lampridis's avatar Dimitris Lampridis

Make pts.py a bit more robust and verbose

parent 8e8168eb
...@@ -154,9 +154,9 @@ if __name__ == '__main__': ...@@ -154,9 +154,9 @@ if __name__ == '__main__':
print "ERROR: Bitstream download fail. Check JTAG connectivity." print "ERROR: Bitstream download fail. Check JTAG connectivity."
else: else:
# Run JPTS in another shell script; JPTS will handle running each of the test scripts # Run JPTS in another shell script; JPTS will handle running each of the test scripts
cmd = "xterm -e ./jpts -s %s %s" % (sn1, sn2) cmd = "xterm -e ./jpts -d -s %s %s" % (sn1, sn2)
print "Running tests :%s\n" % (cmd) print "Running tests :%s\n" % (cmd)
subprocess.call(cmd, shell=True, stdout=fnull, stderr=fnull) subprocess.call(cmd, shell=True)
ret = subprocess.call("grep FAIL log/*.log", shell=True, stdout=fnull, stderr=fnull) ret = subprocess.call("grep FAIL log/*.log", shell=True, stdout=fnull, stderr=fnull)
...@@ -211,11 +211,10 @@ if __name__ == '__main__': ...@@ -211,11 +211,10 @@ if __name__ == '__main__':
time.sleep(10) time.sleep(10)
#Read unique board ID #Read unique board ID
try:
IDMS = bus.vv_read(UIDREGMS) IDMS = bus.vv_read(UIDREGMS)
IDLS = bus.vv_read(UIDREGLS) IDLS = bus.vv_read(UIDREGLS)
#Generate log file #Generate log file
# Generate output file named according to current time # Generate output file named according to current time
...@@ -240,6 +239,9 @@ if __name__ == '__main__': ...@@ -240,6 +239,9 @@ if __name__ == '__main__':
f.close() f.close()
except:
print ""
print "BOARD FAILED..."
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# We're done, turn off the VME crate # We're done, turn off the VME crate
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment