No, the quotes do not seem to help.
I modified run.py to just print the proxy as follows:
%cat run.py
#!/usr/bin/python
# Copyright Rene Rivera 2007-2013
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
import os
import os.path
import shutil
import sys
import urllib
proxy = None
for a in sys.argv[1:]:
if a.startswith('--proxy='):
proxy = {'https' : a.split('=')[1] }
print '--- %s' %(proxy['https'])
%
%python run.py --runner=oracle --toolsets=sun --tag=develop --proxy=http://www-proxy.us.oracle.com:80
--- http://www-proxy.us.oracle.com:80
Now it prints the proxy!
Thanks,
Aparna
----- Original Message -----
From: grafikrobot@gmail.com
To: boost-testing@lists.boost.org
Sent: Thursday, December 11, 2014 12:13:44 PM GMT -08:00 US/Canada Pacific
Subject: Re: [Boost-testing] proxy issues with downloading regression scripts