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

Side by Side Diff: tools/presubmit.sh

Issue 1552313002: Refs #25328 Use a portable shebang (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 | « tools/precompilation/test_macos.sh ('k') | tools/testing/bin/jsshell » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/usr/bin/env bash
2 # 2 #
3 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 3 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
4 # for details. All rights reserved. Use of this source code is governed by a 4 # for details. All rights reserved. Use of this source code is governed by a
5 # BSD-style license that can be found in the LICENSE file. 5 # BSD-style license that can be found in the LICENSE file.
6 # 6 #
7 7
8 # A quick check over a subset the tests in the runtime, compiler 8 # A quick check over a subset the tests in the runtime, compiler
9 # and client directories. 9 # and client directories.
10 10
11 # Currently builds and checks: 11 # Currently builds and checks:
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 echo "*** dartc tests failed" 150 echo "*** dartc tests failed"
151 fi 151 fi
152 152
153 if [ ${CLIENT_RESULT} != 0 ] ; then 153 if [ ${CLIENT_RESULT} != 0 ] ; then
154 echo "*** client tests failed" 154 echo "*** client tests failed"
155 fi 155 fi
156 156
157 if [ ${TESTS_FAILED} == 0 ] ; then 157 if [ ${TESTS_FAILED} == 0 ] ; then
158 echo "All presubmit tests passed!" 158 echo "All presubmit tests passed!"
159 fi 159 fi
OLDNEW
« no previous file with comments | « tools/precompilation/test_macos.sh ('k') | tools/testing/bin/jsshell » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698