Skip to content
Snippets Groups Projects
Commit bc88ef74 authored by Moe Jette's avatar Moe Jette
Browse files

Tweak the test to overcome what looks like a bug in expect

parent 4e58fa2e
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,8 @@ expect {
exit 1
}
"$prompt" {
send_user "Job initiated\n"
# Printing this message seems to damage expect's buffers
# send_user "Job initiated\n"
}
timeout {
send_user "\nFAILURE: srun not responding\n"
......@@ -124,7 +125,8 @@ expect {
exit 1
}
"$prompt" {
send_user "srun completed\n"
# Printing this message seems to damage expect's buffers
# send_user "srun completed\n"
}
timeout {
send_user "\nFAILURE: srun not responding\n"
......@@ -196,7 +198,8 @@ expect {
exit 1
}
"$prompt" {
send_user "srun completed\n"
# Printing this message seems to damage expect's buffers
# send_user "srun completed\n"
}
timeout {
send_user "\nFAILURE: srun not responding\n"
......@@ -247,7 +250,8 @@ expect {
exit 1
}
"$prompt" {
send_user "srun completed\n"
# Printing this message seems to damage expect's buffers
# send_user "srun completed\n"
}
timeout {
send_user "\nFAILURE: srun not responding\n"
......@@ -285,7 +289,8 @@ expect {
exit 1
}
"$prompt" {
send_user "srun completed\n"
# Printing this message seems to damage expect's buffers
# send_user "srun completed\n"
}
timeout {
send_user "\nFAILURE: srun not responding\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment