Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
320e5d3d
Commit
320e5d3d
authored
Jun 03, 2004
by
Robert Ricci
Browse files
When we're going through assign's output, print out the BEST SCORE
line so that we can see the timestamp in it.
parent
73becbb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
tbsetup/assign_wrapper.in
View file @
320e5d3d
...
...
@@ -720,7 +720,13 @@ sub RunAssign ()
# Assign success; parse results.
#
# read nodes section
while
(
<
ASSIGNFP
>
!~
/^Nodes:/
)
{}
while
((
my
$line
=
<
ASSIGNFP
>
)
!~
/^Nodes:/
)
{
# find the 'BEST SCORE' line and print that out for informational
# purposes
if
(
$line
=~
/BEST SCORE/
)
{
print
$line
;
}
}
printdb
"
Nodes:
\n
";
while
(
<
ASSIGNFP
>
)
{
chop
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment