tps/test: ask the user to remove the jumper in test02

parent 2421483e
......@@ -306,6 +306,17 @@ def main (default_directory='.'):
time.sleep(2);
# Ask to the user to remove the jumper.
tmp_stdout = sys.stdout;
sys.stdout = sys.__stdout__;
tmp_stdin = sys.stdin;
sys.stdin = sys.__stdin__;
ask = "";
ask = raw_input("Remove the jumper from the SPEC board. (Press ENTER to continue)")
sys.stdout = tmp_stdout;
sys.stdin = tmp_stdin;
# Continue the test
gennum = rr.Gennum();
eeprom = EEPROM_GENNUM(gennum);
eeprom.eeprom_dump_to_file("/tmp/eeprom.dat");
......
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