Commit e1e41c69 authored by Matthieu Cattin's avatar Matthieu Cattin

Cosmetic changes of prints.

parent a96d3421
......@@ -10,6 +10,8 @@ LOGDIR=./log_fmcadc100m14b4cha
mkdir -p $LOGDIR
sudo rm -fr $LOGDIR/pts*
echo " "
serial=$1
if [ x$1 = x"" ]; then
echo -n "Please scan CERN bar-code serial number, then press [ENTER]: "
......@@ -37,6 +39,7 @@ while [ "$nb_test" -le "$nb_test_limit" ]
do
echo "--------------------------------------------------------------"
echo "Test series run $nb_test out of $nb_test_limit"
echo " "
sudo ./pts.py -b FmcAdc100M14b4cha -s $serial -e $extra_serial -t./test/fmcadc100m14b4cha/python -l $LOGDIR 00 01 02 03 04 05 06 07 08 09
......
......@@ -60,7 +60,7 @@ def main (default_directory='.'):
ask = "";
while ((ask != "Y") and (ask != "N")) :
print "-------------------------------------------------------------"
ask = raw_input("Are the front panel LEDs (TRIG and ACQ) switched ON? [Y/N]")
ask = raw_input("Are the front panel LEDs (TRIG and ACQ) switched ON? [y,n]")
ask = ask.upper()
#print "-------------------------------------------------------------"
print " "
......@@ -77,7 +77,7 @@ def main (default_directory='.'):
ask = "";
while ((ask != "Y") and (ask != "N")) :
print "-------------------------------------------------------------"
ask = raw_input("Are the front panel LEDs (TRIG and ACQ) switched OFF? [Y/N]")
ask = raw_input("Are the front panel LEDs (TRIG and ACQ) switched OFF? [y,n]")
ask = ask.upper()
#print "-------------------------------------------------------------"
print " "
......
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