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

Side by Side Diff: pkg/third_party/html5lib/test/run.sh

Issue 22375011: move html5lib code into dart svn repo (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: change location of html5lib to pkg/third_party/html5lib Created 7 years, 4 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 | Annotate | Revision Log
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 --fatal-type-errors lib/*.dart || \
19 echo "ignore analyzer errors"
20 popd
21
22 dart --enable-type-checks --enable-asserts test/run_all.dart $@
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698