Lines Matching refs:EXP
60 EXP[0]="git status -s -uno"
62 EXP[1]="git status -s -b -uno"
64 EXP[2]="git svn fetch"
66 EXP[3]="git branch"
68 EXP[4]="git checkout -b prepare-push-temporary-branch-created-by-script"
70 EXP[5]="git branch"
72 EXP[6]="git branch"
74 EXP[7]="git checkout -b prepare-push svn/bleeding_edge"
76 EXP[8]="git log -1 --format=%H ChangeLog"
78 EXP[9]="git log -1 hash1"
80 EXP[10]="git log hash1..HEAD --format=%H"
82 EXP[11]="git log -1 hash2 --format=\"%w(80,8,8)%s\""
84 EXP[12]="git log -1 hash2 --format=\"%B\""
86 EXP[13]="git log -1 hash2 --format=\"%w(80,8,8)(%an)\""
88 EXP[14]="git commit -a -m \"Prepare push to trunk. Now working on version 3.4.5.\""
90 EXP[15]="git cl upload -r reviewer@chromium.org --send-mail"
92 EXP[16]="git cl dcommit"
94 EXP[17]="git svn fetch"
96 EXP[18]="git checkout svn/bleeding_edge"
98 EXP[19]="git log -1 --format=%H --grep=Prepare push to trunk. Now working on version 3.4.5."
100 EXP[20]="git diff svn/trunk"
102 EXP[21]="git checkout -b trunk-push svn/trunk"
104 EXP[22]="git apply --index --reject /tmp/v8-push-to-trunk-tempfile-patch"
106 EXP[23]="git add src/version.cc"
108 EXP[24]="git commit -F /tmp/v8-push-to-trunk-tempfile-commitmsg"
110 EXP[25]="git svn dcommit"
112 EXP[26]="git svn tag 3.4.5 -m \"Tagging version 3.4.5\""
114 EXP[27]="git status -s -uno"
116 EXP[28]="git checkout master"
118 EXP[29]="git pull"
120 EXP[30]="git checkout -b v8-roll-12345"
122 EXP[31]="git commit -am Update V8 to version 3.4.5."
124 EXP[32]="git cl upload --send-mail"
126 EXP[33]="git checkout -f some_branch"
128 EXP[34]="git branch -D prepare-push-temporary-branch-created-by-script"
130 EXP[35]="git branch -D prepare-push"
132 EXP[36]="git branch -D trunk-push"
178 for E in "${EXP[@]}"; do
186 # in the EXP/OUT arrays above.
189 local EXP=$(get_expected_command $I)
192 echo "Expected: ${EXP}" >> $TEST_OUTPUT