OLD | NEW |
(Empty) | |
| 1 #!/bin/bash |
| 2 |
| 3 NO_AUTOPREP=True |
| 4 . common_demo_functions.sh |
| 5 |
| 6 rm -rf $REMOTE |
| 7 mkdir -p $REMOTE |
| 8 cd $REMOTE |
| 9 |
| 10 set_user "remote" |
| 11 |
| 12 silent git init |
| 13 |
| 14 WS=build/whitespace_file.txt |
| 15 |
| 16 mkdir build |
| 17 cat > "$WS" <<EOF |
| 18 Copyright 2014 The Chromium Authors. All rights reserved. |
| 19 Use of this useless file is governed by a BSD-style license that can be |
| 20 found in the LICENSE file. |
| 21 |
| 22 |
| 23 This file is used for making non-code changes to trigger buildbot cycles. Make |
| 24 any modification below this line. |
| 25 |
| 26 ===================================================================== |
| 27 |
| 28 Let's make a story. Add one sentence for every commit: |
| 29 |
| 30 CHÄPTER 1: |
| 31 It was a dark and blinky night; the rain fell in torrents -- except at |
| 32 occasional intervals, when it was checked by a violent gust of wind which |
| 33 swept up the streets (for it is in London that our scene lies), rattling along |
| 34 the housetops, and fiercely agitating the scanty flame of the lamps that |
| 35 struggled against the elements. A hooded figure emerged. |
| 36 |
| 37 It was a Domo-Banana. |
| 38 |
| 39 "What took you so long?", inquired his wife. |
| 40 |
| 41 Silence. Oblivious to his silence, she continued, "Did Mr. Usagi enjoy the |
| 42 waffles you brought him?" "You know him, he's not one to forego a waffle, |
| 43 no matter how burnt," he snickered. |
| 44 |
| 45 The pause was filled with the sound of compile errors. |
| 46 |
| 47 CHAPTER 2: |
| 48 The jelly was as dark as night, and just as runny. |
| 49 The Domo-Kun shuddered, remembering the way Mr. Usagi had speared his waffles |
| 50 with his fork, watching the runny jelly spread and pool across his plate, |
| 51 like the blood of a dying fawn. \"It reminds me of that time --\" he started, as |
| 52 his wife cut in quickly: \"-- please. I can't bear to hear it.\". A flury of |
| 53 images coming from the past flowed through his mind. |
| 54 EOF |
| 55 git add "$WS" |
| 56 |
| 57 c "Always output seccomp error messages to stderr" |
| 58 c "ozone: evdev: Filter devices by path" |
| 59 c "ContentView->ContentViewCore in ContentViewRenderView" |
| 60 c "linux_aura: Use system configuration for middle clicking the titlebar." |
| 61 c "[fsp] Add requestUnmount() method together with the request manager." |
| 62 c "don't use glibc-specific execinfo.h on uclibc builds" |
| 63 c "Make ReflectorImpl use mailboxes" |
| 64 |
| 65 git tag stage_1 |
| 66 |
| 67 c "Change the Pica load benchmark to listen for the polymer-ready event" |
| 68 c "Remove AMD family check for the flapper crypto accelerator." |
| 69 c "Temporarily CHECK(trial) in ChromeRenderProcessObserver::OnSetFieldTrialGroup
." |
| 70 |
| 71 echo -e '/Banana\ns/Banana/Kun\nwq' | silent ed "$WS" |
| 72 git add "$WS" |
| 73 set_user 'local' |
| 74 c "Fix terrible typo." |
| 75 |
| 76 set_user 'remote' |
| 77 c "Revert 255617, due to it not tracking use of the link doctor page properly." |
| 78 |
| 79 cat >> "$WS" <<EOF |
| 80 |
| 81 "You recall what happened on Mulholland drive?" The ceiling fan rotated slowly |
| 82 overhead, barely disturbing the thick cigarette smoke. No doubt was left about |
| 83 when the fan was last cleaned. |
| 84 |
| 85 There was an poignant pause. |
| 86 EOF |
| 87 git add "$WS" |
| 88 set_user 'local' |
| 89 c 'Finish chapter 2' |
| 90 |
| 91 git tag stage_2 |
| 92 |
| 93 cat >> "$WS" <<EOF |
| 94 |
| 95 CHAPTER 3: |
| 96 Hilariousness! This chapter is awesome! |
| 97 EOF |
| 98 git add "$WS" |
| 99 set_user 'remote' |
| 100 c "Add best chapter2 ever!" |
| 101 |
| 102 c "Ensure FS is exited for all not-in-same-page navigations." |
| 103 c "Refactor data interchange format." |
OLD | NEW |