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

Side by Side Diff: third_party/re2/runtests

Issue 1544433002: Replace RE2 import with a dependency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-Added LICENSE and OWNERS file Created 4 years, 12 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
« no previous file with comments | « third_party/re2/re2_test.bzl ('k') | third_party/re2/testinstall.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/re2/re2_test.bzl ('k') | third_party/re2/testinstall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698