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

Side by Side Diff: tests/standalone/src/io/DartStdIOPipeTest.sh

Issue 10252020: test rename overhaul: step 12 - standalone (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 #! /bin/bash
2
3 # This script expects the following arguments
4 # $1: Path to dart executable
5 # $2: Path to dart echoing script
6 # $3: Argument to dart echoing script (0, 1 or 2)
7 # $4: File for output from piping stdout and stderr
8 # $5: File prefix for output from redirecting stdout and stderr to a file.
9
10 # Test piping and stdio file redirection.
11 echo "Hello" | $1 $2 $3 2>&1 | cat - > $4
12 $1 $2 $3 < $4 > $5.stdout 2> $5.stderr
13 $1 $2 $3 < $4 >> $5.stdout 2>> $5.stderr
OLDNEW
« no previous file with comments | « tests/standalone/src/io/DartStdIOPipeTest.dart ('k') | tests/standalone/src/io/DirectoryErrorTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698