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

Side by Side Diff: pkg/polymer/test/run.sh

Issue 147453004: update web_components (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: deletes polymer test script Created 6 years, 10 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
« no previous file with comments | « no previous file | pkg/web_components/README.md » ('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) 2013, the Dart project authors. Please see the AUTHORS file
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.
5
6 # Usage: run from a Dart SVN checkout after building.
7
8 # bail on error
9 set -e
10
11 # Note: test.dart needs to be run from the root of the Dart checkout
12 DIR=$( cd $( dirname "${BASH_SOURCE[0]}" ) && pwd )
13 pushd $DIR/../../.. > /dev/null
14
15 echo "*** Running unit tests for Polymer.dart and its dependencies."
16
17 SUITES="pkg/polymer samples/third_party/todomvc"
18
19 ANALYZER_CONFIG="-m release -r none -c dartanalyzer $*"
20 CONFIG="-m release -r vm,drt,ff,chrome,d8,jsshell -c none,dart2js --checked $*"
21
22 CMD="./tools/test.py $ANALYZER_CONFIG $SUITES"
23 echo "*** $CMD"
24 $CMD
25
26 CMD="xvfb-run ./tools/test.py $CONFIG $SUITES"
27 echo "*** $CMD"
28 $CMD
29
30 echo -e "All tests pass"
OLDNEW
« no previous file with comments | « no previous file | pkg/web_components/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698