|
Boost Testing : |
From: David Deakins (ddeakins_at_[hidden])
Date: 2007-09-13 23:59:19
I was doing some testing today where I used the individual commands in
regression.py (setup, test, collect-logs, etc.) instead of the full
sequence and I noticed that the collect-logs command seems to be broken
in the version of regression.py on trunk. The new 'http_proxy' argument
of collect_logs added a few weeks ago does not seem to get set up in
regression.py's accept_args function. As a result, when I execute
'regression.py collect-logs --runner=VeecoFTC ...', I get an error:
Trackback (most recent call last):
File "regression.py", line 1019, in <module>
commands[ command ]( **accept_args( args ) )
TypeError: collect_logs() takes exactly 9 non-keyword arguments (7 given)
There is a 'proxy' argument in accept_args. Is this synonymous with the
'http_proxy' argument in collect_logs?
Thanks,
-Dave
Index: regression.py
===================================================================
--- regression.py (revision 39230)
+++ regression.py (working copy)
@@ -629,7 +629,7 @@
, comment
, incremental
, dart_server
- , http_proxy
+ , proxy
, args
, **unused
):
@@ -666,7 +666,7 @@
, source
, run_type
, dart_server
- , http_proxy
+ , proxy
)