| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2013 the V8 project authors. All rights reserved. | 2 # Copyright 2013 the V8 project authors. All rights reserved. |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following | 10 # copyright notice, this list of conditions and the following |
| (...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 982 ROLL_COMMIT_MSG = """Update V8 to version 3.22.4 (based on abc). | 982 ROLL_COMMIT_MSG = """Update V8 to version 3.22.4 (based on abc). |
| 983 | 983 |
| 984 Summary of changes available at: | 984 Summary of changes available at: |
| 985 https://chromium.googlesource.com/v8/v8/+log/last_rol..roll_hsh | 985 https://chromium.googlesource.com/v8/v8/+log/last_rol..roll_hsh |
| 986 | 986 |
| 987 Please follow these instructions for assigning/CC'ing issues: | 987 Please follow these instructions for assigning/CC'ing issues: |
| 988 https://code.google.com/p/v8-wiki/wiki/TriagingIssues | 988 https://code.google.com/p/v8-wiki/wiki/TriagingIssues |
| 989 | 989 |
| 990 Please close rolling in case of a roll revert: | 990 Please close rolling in case of a roll revert: |
| 991 https://v8-roll.appspot.com/ | 991 https://v8-roll.appspot.com/ |
| 992 This only works with a Google account. |
| 992 | 993 |
| 993 TBR=g_name@chromium.org,reviewer@chromium.org""" | 994 TBR=g_name@chromium.org,reviewer@chromium.org""" |
| 994 | 995 |
| 995 def testChromiumRoll(self): | 996 def testChromiumRoll(self): |
| 996 # Setup fake directory structures. | 997 # Setup fake directory structures. |
| 997 TEST_CONFIG["CHROMIUM"] = self.MakeEmptyTempDirectory() | 998 TEST_CONFIG["CHROMIUM"] = self.MakeEmptyTempDirectory() |
| 998 TextToFile("", os.path.join(TEST_CONFIG["CHROMIUM"], ".git")) | 999 TextToFile("", os.path.join(TEST_CONFIG["CHROMIUM"], ".git")) |
| 999 chrome_dir = TEST_CONFIG["CHROMIUM"] | 1000 chrome_dir = TEST_CONFIG["CHROMIUM"] |
| 1000 os.makedirs(os.path.join(chrome_dir, "v8")) | 1001 os.makedirs(os.path.join(chrome_dir, "v8")) |
| 1001 | 1002 |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1546 | 1547 |
| 1547 Review URL: https://codereview.chromium.org/83173002 | 1548 Review URL: https://codereview.chromium.org/83173002 |
| 1548 | 1549 |
| 1549 ------------------------------------------------------------------------""") | 1550 ------------------------------------------------------------------------""") |
| 1550 self.assertEquals( | 1551 self.assertEquals( |
| 1551 """Prepare push to trunk. Now working on version 3.23.11. | 1552 """Prepare push to trunk. Now working on version 3.23.11. |
| 1552 | 1553 |
| 1553 R=danno@chromium.org | 1554 R=danno@chromium.org |
| 1554 | 1555 |
| 1555 Committed: https://code.google.com/p/v8/source/detail?r=17997""", body) | 1556 Committed: https://code.google.com/p/v8/source/detail?r=17997""", body) |
| OLD | NEW |