Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(949)

Side by Side Diff: scripts/slave/recipes/example/subannotations.expected/basic.json

Issue 1071733003: Revert of Make allow_subannotations more robust. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 [
2 {
3 "allow_subannotations": true,
4 "cmd": [
5 "python",
6 "-u",
7 "\nimport sys\nprint 'Some output...'\nprint '@@@BUILD_STEP a build step@@ @'\nprint 'Some output inside a build step'\nprint '@@@STEP_TEXT@this is step te xt@@@'\nprint '@@@BUILD_STEP another build step@@@'\n"
8 ],
9 "name": "subannotator",
10 "~followup_annotations": [
11 "@@@STEP_TEXT@Wooot!@@@",
12 "@@@STEP_LOG_LINE@python.inline@@@@",
13 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
14 "@@@STEP_LOG_LINE@python.inline@print 'Some output...'@@@",
15 "@@@STEP_LOG_LINE@python.inline@print '@@@BUILD_STEP a build step@@@'@@@",
16 "@@@STEP_LOG_LINE@python.inline@print 'Some output inside a build step'@@@ ",
17 "@@@STEP_LOG_LINE@python.inline@print '@@@STEP_TEXT@this is step text@@@'@ @@",
18 "@@@STEP_LOG_LINE@python.inline@print '@@@BUILD_STEP another build step@@@ '@@@",
19 "@@@STEP_LOG_END@python.inline@@@"
20 ]
21 },
22 {
23 "cmd": [
24 "python",
25 "-u",
26 "\nimport sys\nprint 'Some output...'\nprint '@@@BUILD_STEP a unique build step@@@'\nprint 'Some output inside a build step'\nprint '@@@STEP_TEXT@this is step text@@@'\nprint '@@@BUILD_STEP another build step@@@'\n"
27 ],
28 "name": "disallowed subannotator",
29 "~followup_annotations": [
30 "@@@STEP_LOG_LINE@python.inline@@@@",
31 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
32 "@@@STEP_LOG_LINE@python.inline@print 'Some output...'@@@",
33 "@@@STEP_LOG_LINE@python.inline@print '@@@BUILD_STEP a unique build step@@ @'@@@",
34 "@@@STEP_LOG_LINE@python.inline@print 'Some output inside a build step'@@@ ",
35 "@@@STEP_LOG_LINE@python.inline@print '@@@STEP_TEXT@this is step text@@@'@ @@",
36 "@@@STEP_LOG_LINE@python.inline@print '@@@BUILD_STEP another build step@@@ '@@@",
37 "@@@STEP_LOG_END@python.inline@@@"
38 ]
39 },
40 {
41 "allow_subannotations": true,
42 "cmd": [
43 "python",
44 "-u",
45 "\nimport sys\nprint 'Some output...'\nprint '@@@BUILD_STEP a unique build step@@@'\nprint 'Some output inside a build step'\nprint '@@@STEP_TEXT@this is step text@@@'\nprint '@@@BUILD_STEP another build step@@@'\nsys.exit(1)\n"
46 ],
47 "name": "subannotator (2)",
48 "~followup_annotations": [
49 "@@@STEP_LOG_LINE@python.inline@@@@",
50 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
51 "@@@STEP_LOG_LINE@python.inline@print 'Some output...'@@@",
52 "@@@STEP_LOG_LINE@python.inline@print '@@@BUILD_STEP a unique build step@@ @'@@@",
53 "@@@STEP_LOG_LINE@python.inline@print 'Some output inside a build step'@@@ ",
54 "@@@STEP_LOG_LINE@python.inline@print '@@@STEP_TEXT@this is step text@@@'@ @@",
55 "@@@STEP_LOG_LINE@python.inline@print '@@@BUILD_STEP another build step@@@ '@@@",
56 "@@@STEP_LOG_LINE@python.inline@sys.exit(1)@@@",
57 "@@@STEP_LOG_END@python.inline@@@"
58 ]
59 },
60 {
61 "cmd": [
62 "echo",
63 "post_run"
64 ],
65 "name": "post run"
66 }
67 ]
OLDNEW
« no previous file with comments | « scripts/slave/recipes/example/subannotations.py ('k') | scripts/slave/unittests/recipe_simulation_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698