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

Side by Side Diff: packages/html/test/run.sh

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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 | « packages/html/test/parser_test.dart ('k') | packages/html/test/run_all.dart » ('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 #!/bin/bash
2 # Copyright (c) 2012, the Dart project authors. Please see the LICENSE file
3 # for details. All rights reserved. Use of this source code is governed by a
4 # MIT-style license that can be found in the LICENSE file.
5
6 # bail on error
7 set -e
8
9 # TODO(sigmund): replace with a real test runner
10 DIR=$( cd $( dirname "${BASH_SOURCE[0]}" ) && pwd )
11
12 # Note: dart_analyzer needs to be run from the root directory for proper path
13 # canonicalization.
14 pushd $DIR/..
15 # TODO(jmesserly): switch to new analyzer. Note: it's missing a lot of the
16 # tests for implemented members; we should get that fixed before switching.
17 echo Analyzing library for warnings or type errors
18 dartanalyzer --fatal-warnings lib/*.dart || \
19 echo "ignore analyzer errors"
20 popd
21
22 dart --checked test/run_all.dart $@
OLDNEW
« no previous file with comments | « packages/html/test/parser_test.dart ('k') | packages/html/test/run_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698