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

Side by Side Diff: third_party/re2/runtests

Issue 10575037: Include RE2 library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed windows include dirs Created 8 years, 6 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 #!/usr/bin/env bash
2
3 success=true
4 for i
5 do
6 printf "%-40s" $i
7 if sh -c "$i >$i.log 2>&1" 2>/dev/null
8 then
9 echo PASS
10 else
11 echo FAIL';' output in $i.log
12 success=false
13 fi
14 done
15
16 if $success; then
17 echo 'ALL TESTS PASSED.'
18 exit 0
19 fi
20 echo 'TESTS FAILED.'
21 exit 1
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698