| 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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 980 """ | 980 """ |
| 981 | 981 |
| 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: |
| 991 https://v8-roll.appspot.com/ |
| 992 |
| 990 TBR=g_name@chromium.org,reviewer@chromium.org""" | 993 TBR=g_name@chromium.org,reviewer@chromium.org""" |
| 991 | 994 |
| 992 def testChromiumRoll(self): | 995 def testChromiumRoll(self): |
| 993 # Setup fake directory structures. | 996 # Setup fake directory structures. |
| 994 TEST_CONFIG["CHROMIUM"] = self.MakeEmptyTempDirectory() | 997 TEST_CONFIG["CHROMIUM"] = self.MakeEmptyTempDirectory() |
| 995 TextToFile("", os.path.join(TEST_CONFIG["CHROMIUM"], ".git")) | 998 TextToFile("", os.path.join(TEST_CONFIG["CHROMIUM"], ".git")) |
| 996 chrome_dir = TEST_CONFIG["CHROMIUM"] | 999 chrome_dir = TEST_CONFIG["CHROMIUM"] |
| 997 os.makedirs(os.path.join(chrome_dir, "v8")) | 1000 os.makedirs(os.path.join(chrome_dir, "v8")) |
| 998 | 1001 |
| 999 # Write fake deps file. | 1002 # Write fake deps file. |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1543 | 1546 |
| 1544 Review URL: https://codereview.chromium.org/83173002 | 1547 Review URL: https://codereview.chromium.org/83173002 |
| 1545 | 1548 |
| 1546 ------------------------------------------------------------------------""") | 1549 ------------------------------------------------------------------------""") |
| 1547 self.assertEquals( | 1550 self.assertEquals( |
| 1548 """Prepare push to trunk. Now working on version 3.23.11. | 1551 """Prepare push to trunk. Now working on version 3.23.11. |
| 1549 | 1552 |
| 1550 R=danno@chromium.org | 1553 R=danno@chromium.org |
| 1551 | 1554 |
| 1552 Committed: https://code.google.com/p/v8/source/detail?r=17997""", body) | 1555 Committed: https://code.google.com/p/v8/source/detail?r=17997""", body) |
| OLD | NEW |