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

Unified Diff: recipe_modules/step/tests/stdio.expected/basic.json

Issue 2806363004: Enable strict coverage for step module (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: recipe_modules/step/tests/stdio.expected/basic.json
diff --git a/recipe_modules/step/tests/stdio.expected/basic.json b/recipe_modules/step/tests/stdio.expected/basic.json
new file mode 100644
index 0000000000000000000000000000000000000000..4590bd7fe4aefbc601453cdd624226259684bdba
--- /dev/null
+++ b/recipe_modules/step/tests/stdio.expected/basic.json
@@ -0,0 +1,32 @@
+[
+ {
+ "cmd": [
+ "echo",
+ "Hello World"
+ ],
+ "name": "echo",
+ "stderr": "/path/to/tmp/",
+ "stdout": "/path/to/tmp/"
+ },
+ {
+ "cmd": [
+ "cat"
+ ],
+ "name": "cat",
+ "stdin": "hello",
+ "stdout": "/path/to/tmp/out"
+ },
+ {
+ "cmd": [
+ "echo",
+ "huh"
+ ],
+ "name": "automock",
+ "stdout": "/path/to/tmp/out"
+ },
+ {
+ "name": "$result",
+ "recipe_result": null,
+ "status_code": 0
+ }
+]

Powered by Google App Engine
This is Rietveld 408576698