summaryrefslogtreecommitdiffstats
path: root/tools/python
Commit message (Collapse)AuthorAgeFilesLines
* Regenerate the root certificate and end-entity certificates used for various ↵rsleevi@chromium.org2013-06-203-74/+210
| | | | | | | | | | | | | | tests in net_unittests, now that Windows can temporarily trust certificates for the duration of tests. In addition, add unittests for net::TestRootCerts, which depend on the certs being tested not being trusted by the system beforehand. BUG=8470, 5552 TEST=TestRootCertsTest.* TBR=zelidrag Review URL: https://chromiumcodereview.appspot.com/5535006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207443 0039d316-1c4b-4281-b951-d872f2087c98
* Give time to free the port when shutting down apache on OSX.tony@chromium.org2012-08-141-1/+3
| | | | | | | | | | | | | | Sometimes the next perf test would try to start the http server, but the port wouldn't be available. This matches what we do on Linux. In the long run, we should use a random port to avoid having to wait. BUG=29228 Review URL: https://chromiumcodereview.appspot.com/10834299 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151449 0039d316-1c4b-4281-b951-d872f2087c98
* Add Web Page Replay enabled page cycler tests to pyauto.slamm@google.com2012-05-231-269/+0
| | | | | | | | | | | NOTRY=true BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10411011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138466 0039d316-1c4b-4281-b951-d872f2087c98
* Checkout Web Page Replay in src/third_party (was ↵slamm@google.com2012-05-111-1/+1
| | | | | | | | | | | | | | | | | | | | chrome/tools/build/third_party). Previously (issue 10020064), this was committed and backed out because of licensecheck.pl issues. This CL depends on issue 10310044 to fix licensecheck.pl UNKNOWNs for webpagereplay/third_party/dns. This CL differs from 10020064 in that it grabs an updated Web Page Replay to fix UNKNOWNs for webpagereplay/third_party/nbhttp. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10310084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136708 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 134380 - Checkout Web Page Replay in src/third_party (was ↵yoz@chromium.org2012-04-281-1/+1
| | | | | | | | | | | | | | | | | chrome/tools/build/third_party). check_licenses failure. BUG= TEST= Review URL: http://codereview.chromium.org/10020064 TBR=slamm@google.com Review URL: https://chromiumcodereview.appspot.com/10256016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134413 0039d316-1c4b-4281-b951-d872f2087c98
* Checkout Web Page Replay in src/third_party (was ↵slamm@google.com2012-04-271-1/+1
| | | | | | | | | | | | chrome/tools/build/third_party). BUG= TEST= Review URL: http://codereview.chromium.org/10020064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134380 0039d316-1c4b-4281-b951-d872f2087c98
* Add Web Page Replay test to page cycler.slamm@google.com2012-04-181-0/+269
| | | | | | | | | | | | - Add supporting WPR extension. BUG= TEST= Review URL: http://codereview.chromium.org/9956045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132730 0039d316-1c4b-4281-b951-d872f2087c98
* Fix python scripts in src/tools/maruel@chromium.org2011-11-298-39/+39
| | | | | | | | | | | | | | | | | | Make sure that: - shebang is only present for executable files - shebang is #!/usr/bin/env python - __main__ is only present for executable files - file's executable bit is coherent Also fix EOF LF to be only one. TBR=timurrrr@chromium.org BUG=105108 TEST= Review URL: http://codereview.chromium.org/8678023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111960 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for Linux kernels >=3.0-rc1 in Python related build files by:tony@chromium.org2011-06-161-2/+2
| | | | | | | | | | | | | | | - replacing occurences of sys.platform == 'linux2' with sys.platform.startswith('linux') - congregating occurences of sys.platform in ('linux[X]', 'linuxY', ...) to sys.platform.startswith('linux') - adding the key 'linux3' to all relevant lookup dicts BUG=85845 TEST=Try building chromium on Linux >=3.0-r1 Review URL: http://codereview.chromium.org/7172016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89354 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 69356 - Regenerate the root certificate and end-entity certificates ↵rsleevi@chromium.org2010-12-163-145/+72
| | | | | | | | | | | | | | | used for various tests in net_unittests, now that Windows can temporarily trust certificates for the duration of tests. In addition, add unittests for net::TestRootCerts, which depend on the certs being tested not being trusted by the system beforehand. BUG=8470, 5552 TEST=TestRootCertsTest.* Review URL: http://codereview.chromium.org/5535006 TBR=rsleevi@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69363 0039d316-1c4b-4281-b951-d872f2087c98
* Regenerate the root certificate and end-entity certificates used for various ↵rsleevi@chromium.org2010-12-163-72/+145
| | | | | | | | | | | | | tests in net_unittests, now that Windows can temporarily trust certificates for the duration of tests. In addition, add unittests for net::TestRootCerts, which depend on the certs being tested not being trusted by the system beforehand. BUG=8470, 5552 TEST=TestRootCertsTest.* Review URL: http://codereview.chromium.org/5535006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69356 0039d316-1c4b-4281-b951-d872f2087c98
* Factor out some SSL specific configs, and add another reference to /var/run topetermayo@chromium.org2010-12-152-4/+21
| | | | | | | | | | | override as well. TEST=not yet BUG=none Review URL: http://codereview.chromium.org/5591007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69222 0039d316-1c4b-4281-b951-d872f2087c98
* Adding SSL mutex specification to a local file, to stop relying on a mutablepetermayo@chromium.org2010-12-052-0/+4
| | | | | | | | | | | directory in the root. TEST=Locally on a bot like machine (no prior fix). Try bots (with chmod /var/run). BUG=none Review URL: http://codereview.chromium.org/5617004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68312 0039d316-1c4b-4281-b951-d872f2087c98
* Clean up code duplication in layout test http_server.mhm@chromium.org2009-10-071-26/+26
| | | | | | | | | | | | | Refactored out UrlIsAlive to live outside the ApacheHttpd class and imported http_utils.py into http_server.py Now they share common code. BUG=6784 TEST=started and stopped http_server successfully. Review URL: http://codereview.chromium.org/243022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28351 0039d316-1c4b-4281-b951-d872f2087c98
* Add page_cycler test machine setup notes to httpd2_linux.conf. No Code Change.thestig@chromium.org2009-10-061-6/+11
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/256069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28071 0039d316-1c4b-4281-b951-d872f2087c98
* Provide a server name for the apache2. The buildbot machine isn'ttony@chromium.org2009-08-261-1/+1
| | | | | | | | | | | able to resolve its hostname, so just put in a placeholder value. TBR=nirnimesh Review URL: http://codereview.chromium.org/174536 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24473 0039d316-1c4b-4281-b951-d872f2087c98
* Step 1 in porting page cycler http to linux. Add http startup totony@chromium.org2009-08-253-2/+278
| | | | | | | | | | | the the platform utils. BUG=15470 Review URL: http://codereview.chromium.org/174378 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24254 0039d316-1c4b-4281-b951-d872f2087c98
* Update smoketests.py so we can run ui_tests in parallel, withhuanr@chromium.org2009-07-291-0/+86
| | | | | | | | the number of shards equal to NUMBER_OF_PROCESSORS. Review URL: http://codereview.chromium.org/159568 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21996 0039d316-1c4b-4281-b951-d872f2087c98
* Port page_cycler_http to Macnirnimesh@chromium.org2009-04-174-2/+369
| | | | | | | Accompanying buildbot changes @ http://codereview.chromium.org/67234 Review URL: http://codereview.chromium.org/79017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13950 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes CRLF and trailing white spaces.maruel@chromium.org2009-03-054-9/+9
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10982 0039d316-1c4b-4281-b951-d872f2087c98
* Update SSL certificates.patrick@chromium.org2008-12-162-36/+76
| | | | | | Review URL: http://codereview.chromium.org/14438 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7031 0039d316-1c4b-4281-b951-d872f2087c98
* Use a more compact license header in source files.license.bot2008-08-247-196/+28
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1287 0039d316-1c4b-4281-b951-d872f2087c98
* Remove php from Apache's configjabdelmalek@google.com2008-08-071-2/+2
| | | | | | TBR=pamg@google.com git-svn-id: svn://svn.chromium.org/chrome/trunk/src@475 0039d316-1c4b-4281-b951-d872f2087c98
* Make sure the child process terminates before returning from ↵pjohnson@google.com2008-07-281-0/+3
| | | | | | | | process_utils.RunCommandFull. BUG=1295708 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43 0039d316-1c4b-4281-b951-d872f2087c98
* Add tools to the repository.initial.commit2008-07-2712-0/+2677
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17 0039d316-1c4b-4281-b951-d872f2087c98