| OLD | NEW |
| 1 #!/usr/bin/env bash | 1 #!/usr/bin/env bash |
| 2 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 # Script to update the dart2js status lines for all tests running with the | 6 # Script to update the dart2js status lines for all tests running with the |
| 7 # $dart2js_with_kernel test configuration. | 7 # $dart2js_with_kernel test configuration. |
| 8 | 8 |
| 9 repodir=$(cd $(dirname ${BASH_SOURCE[0]})/../../../../; pwd) | 9 repodir=$(cd $(dirname ${BASH_SOURCE[0]})/../../../../; pwd) |
| 10 dart="out/ReleaseX64/dart" | 10 dart="out/ReleaseX64/dart" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 pushd $repodir > /dev/null | 33 pushd $repodir > /dev/null |
| 34 ./tools/build.py -m release create_sdk | 34 ./tools/build.py -m release create_sdk |
| 35 | 35 |
| 36 if [[ $# -ge 1 ]]; then | 36 if [[ $# -ge 1 ]]; then |
| 37 update_suite $1 | 37 update_suite $1 |
| 38 else | 38 else |
| 39 update_suite dart2js_native | 39 update_suite dart2js_native |
| 40 update_suite dart2js_extra | 40 update_suite dart2js_extra |
| 41 update_suite language | 41 update_suite language |
| 42 update_suite language_2 | 42 update_suite language_2 |
| 43 update_suite corelib | |
| 44 update_suite corelib_2 | 43 update_suite corelib_2 |
| 45 fi | 44 fi |
| 46 | 45 |
| 47 rm -rf $tmp | 46 rm -rf $tmp |
| 48 popd > /dev/null | 47 popd > /dev/null |
| OLD | NEW |