| OLD | NEW |
| 1 @ECHO OFF | 1 @ECHO OFF |
| 2 REM Copyright (c) 2009 The Chromium Authors. All rights reserved. | 2 REM Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 3 REM Use of this source code is governed by a BSD-style license that can be | 3 REM Use of this source code is governed by a BSD-style license that can be |
| 4 REM found in the LICENSE file. | 4 REM found in the LICENSE file. |
| 5 REM | 5 REM |
| 6 REM Purpose of this file: If you have IE9 on your machine, not all of | 6 REM Purpose of this file: If you have IE9 on your machine, not all of |
| 7 REM the Chrome Frame tests will currently pass. To run the tests on | 7 REM the Chrome Frame tests will currently pass. To run the tests on |
| 8 REM a VM or separate machine, you need to copy a bunch of things over | 8 REM a VM or separate machine, you need to copy a bunch of things over |
| 9 REM (the tests run slowly or flakily over a network drive). | 9 REM (the tests run slowly or flakily over a network drive). |
| 10 REM | 10 REM |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 REM (ChromeFrameTestWithWebServer.FullTabModeIE_TestPostReissue) fails | 31 REM (ChromeFrameTestWithWebServer.FullTabModeIE_TestPostReissue) fails |
| 32 REM until you choose "never show again" in the "did you notice the | 32 REM until you choose "never show again" in the "did you notice the |
| 33 REM infobar" dialog that IE shows, at least if you're running IE7. | 33 REM infobar" dialog that IE shows, at least if you're running IE7. |
| 34 | 34 |
| 35 if (%1)==() goto usage | 35 if (%1)==() goto usage |
| 36 | 36 |
| 37 setlocal | 37 setlocal |
| 38 set CLIENT_ROOT=%~dp0%..\.. | 38 set CLIENT_ROOT=%~dp0%..\.. |
| 39 set CONFIG=%1 | 39 set CONFIG=%1 |
| 40 | 40 |
| 41 if (%2)==() goto setdefaultbase | 41 if (%2)==() goto setdefault |
| 42 if (%3)==() goto usage | 42 if (%3)==() goto usage |
| 43 set DRIVE=%2 | 43 set DRIVE=%2 |
| 44 set INSTALL_ROOT=%3 | 44 set INSTALL_ROOT=%3 |
| 45 goto pastbase | 45 goto pastbase |
| 46 :setdefault | 46 :setdefault |
| 47 set DRIVE=c: | 47 set DRIVE=c: |
| 48 set INSTALL_ROOT=\trybot | 48 set INSTALL_ROOT=\trybot |
| 49 :pastbase | 49 :pastbase |
| 50 | 50 |
| 51 @ECHO ON | 51 @ECHO ON |
| (...skipping 22 matching lines...) Expand all Loading... |
| 74 echo THEN DO THIS IN A REGULAR PROMPT: | 74 echo THEN DO THIS IN A REGULAR PROMPT: |
| 75 echo ********************************* | 75 echo ********************************* |
| 76 echo \trybot\build\%CONFIG%\chrome_frame_unittests.exe | 76 echo \trybot\build\%CONFIG%\chrome_frame_unittests.exe |
| 77 echo \trybot\build\%CONFIG%\chrome_frame_tests.exe | 77 echo \trybot\build\%CONFIG%\chrome_frame_tests.exe |
| 78 goto end | 78 goto end |
| 79 | 79 |
| 80 :usage | 80 :usage |
| 81 echo "Usage: poor_mans_trybot.bat CONFIG [DRIVE INSTALL_ROOT]" | 81 echo "Usage: poor_mans_trybot.bat CONFIG [DRIVE INSTALL_ROOT]" |
| 82 | 82 |
| 83 :end | 83 :end |
| OLD | NEW |