Displaying 4 results from an estimated 4 matches for "result_fil".
Did you mean:
result_file
2009 Jul 21
1
[PATCH node-image] Moved all temporary files into a single work directory to clean up.
...ir ipaddress; do
@@ -683,6 +684,7 @@ cleanup_after_testing () {
destroy_node $vm
done
stop_networking
+ rm -rf $WORKDIR
}
# check commandline options
@@ -715,7 +717,7 @@ set +u
if [ $# -gt 0 -a -n "$1" ]; then RESULTS=$1; else RESULTS=autotest.log; fi
set -u
-result_file=$(mktemp)
+result_file=$WORKDIR/results.log
debug "result_file=${result_file}"
log "Logging results to file: ${RESULTS}"
--
1.6.2.5
2005 Dec 15
6
passing parameters to link_to OR better way to do this?
...ame %></td>
<td><%= log.date_time %></td>
<td><%= log.status %></td>
<td><%= log.test_run_path %></td>
<td><%= link_to log.test_results_path, :action => "show_results",
:id => o, :params => { :result_file => log.test_results_path} %> </td>
</tr>
<% end %>
======
code:
====
def show_results
# get the results file and do some munging
end
Is there a way to pass parameters to the link_to(), OR is there some
better way to do this in general that''s more Rai...
2009 May 19
1
[PATCH node-image] Fixing the autotest script.
...test -n "$vm_list" && for vm in $vm_list; do
- destroy_node $vm
+ destroy_node $vm
done
+ stop_networking
}
# check commandline options
@@ -715,15 +715,30 @@ set +u
if [ $# -gt 0 -a -n "$1" ]; then RESULTS=$1; else RESULTS=autotest.log; fi
set -u
+result_file=$(mktemp)
+debug "result_file=${result_file}"
+
log "Logging results to file: ${RESULTS}"
{
setup_for_testing
log "Begin Testing: ${isoname}"
+ log "Tests: ${tests}"
for test in ${tests}; do
execute_test $test
+ result=$?
+
+ if [ $...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...+isofile="$(cd `dirname $isofile`; pwd)/${isoname}"
+
+if ! [ -s "${isofile}" ]; then
+ die "Missing or invalid file: ${isofile}"
+fi
+
+shift $(($OPTIND - 1))
+
+set +u
+if [ $# -gt 0 -a -n "$1" ]; then RESULTS=$1; else RESULTS=autotest.log; fi
+set -u
+
+result_file=$WORKDIR/results.log
+debug "result_file=${result_file}"
+
+log "Logging results to file: ${RESULTS}"
+{
+ setup_for_testing
+
+ log "Begin Testing: ${isoname}"
+ log "Tests: ${tests}"
+ log "Timeout: ${timeout_period} ms"
+
+ for te...