| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |