OLD | NEW |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
Michael Achenbach
2015/02/25 14:57:13
This file needs to be deleted. I'll do that in a d
| |
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 |
11 # disclaimer in the documentation and/or other materials provided | 11 # disclaimer in the documentation and/or other materials provided |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
96 EXP[18]="git checkout svn/bleeding_edge" | 96 EXP[18]="git checkout svn/bleeding_edge" |
97 OUT[18]="" | 97 OUT[18]="" |
98 EXP[19]="git log -1 --format=%H --grep=Prepare push to trunk. Now working on ve rsion 3.4.5." | 98 EXP[19]="git log -1 --format=%H --grep=Prepare push to trunk. Now working on ve rsion 3.4.5." |
99 OUT[19]="hash3" | 99 OUT[19]="hash3" |
100 EXP[20]="git diff svn/trunk" | 100 EXP[20]="git diff svn/trunk" |
101 OUT[20]="patch1" | 101 OUT[20]="patch1" |
102 EXP[21]="git checkout -b trunk-push svn/trunk" | 102 EXP[21]="git checkout -b trunk-push svn/trunk" |
103 OUT[21]="" | 103 OUT[21]="" |
104 EXP[22]="git apply --index --reject /tmp/v8-push-to-trunk-tempfile-patch" | 104 EXP[22]="git apply --index --reject /tmp/v8-push-to-trunk-tempfile-patch" |
105 OUT[22]="" | 105 OUT[22]="" |
106 EXP[23]="git add src/version.cc" | 106 EXP[23]="git add include/v8-version.h" |
107 OUT[23]="" | 107 OUT[23]="" |
108 EXP[24]="git commit -F /tmp/v8-push-to-trunk-tempfile-commitmsg" | 108 EXP[24]="git commit -F /tmp/v8-push-to-trunk-tempfile-commitmsg" |
109 OUT[24]="" | 109 OUT[24]="" |
110 EXP[25]="git svn dcommit" | 110 EXP[25]="git svn dcommit" |
111 OUT[25]="r1234" | 111 OUT[25]="r1234" |
112 EXP[26]="git svn tag 3.4.5 -m \"Tagging version 3.4.5\"" | 112 EXP[26]="git svn tag 3.4.5 -m \"Tagging version 3.4.5\"" |
113 OUT[26]="" | 113 OUT[26]="" |
114 EXP[27]="git status -s -uno" | 114 EXP[27]="git status -s -uno" |
115 OUT[27]="" | 115 OUT[27]="" |
116 EXP[28]="git checkout master" | 116 EXP[28]="git checkout master" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
237 | 237 |
238 echo "Collected output:" | 238 echo "Collected output:" |
239 command cat $TEST_OUTPUT | 239 command cat $TEST_OUTPUT |
240 | 240 |
241 ########## Clean up | 241 ########## Clean up |
242 | 242 |
243 rm -rf $TEST_OUTPUT | 243 rm -rf $TEST_OUTPUT |
244 rm -rf $INDEX | 244 rm -rf $INDEX |
245 rm -rf $MOCK_OUTPUT | 245 rm -rf $MOCK_OUTPUT |
246 rm -rf $EXPECTED_COMMANDS | 246 rm -rf $EXPECTED_COMMANDS |
OLD | NEW |