Mercurial > hgbook
comparison en/examples/bisect @ 190:cd066590e2e3
Another hopeless attempt at bisect stability.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon, 16 Apr 2007 14:38:45 -0700 |
parents | e985873a9d1a |
children | 7a6bd93174bd |
comparison
equal
deleted
inserted
replaced
189:3c6c5b551c96 | 190:cd066590e2e3 |
---|---|
13 hg init mybug | 13 hg init mybug |
14 cd mybug | 14 cd mybug |
15 | 15 |
16 #$ name: commits | 16 #$ name: commits |
17 | 17 |
18 buggy_change=37 | 18 buggy_change=22 |
19 | 19 |
20 for (( i = 0; i < 50; i++ )); do | 20 for (( i = 0; i < 35; i++ )); do |
21 if [[ $i = $buggy_change ]]; then | 21 if [[ $i = $buggy_change ]]; then |
22 echo 'i have a gub' > myfile$i | 22 echo 'i have a gub' > myfile$i |
23 hg commit -q -A -m 'buggy changeset' | 23 hg commit -q -A -m 'buggy changeset' |
24 else | 24 else |
25 echo 'nothing to see here, move along' > myfile$i | 25 echo 'nothing to see here, move along' > myfile$i |