From 0b48c1f6b3ece13b28a99e60244906b6a528bd1e Mon Sep 17 00:00:00 2001 From: Victor Date: Tue, 22 Apr 2014 22:45:54 +0200 Subject: [PATCH] chore(travis): run transformer tests --- scripts/travis/build.sh | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/scripts/travis/build.sh b/scripts/travis/build.sh index fc0ee7cb6..179b13a41 100755 --- a/scripts/travis/build.sh +++ b/scripts/travis/build.sh @@ -29,7 +29,7 @@ if [[ $TESTS == "dart2js" ]]; then echo '------------------------' echo '-- BUILDING: examples --' echo '------------------------' - + if [[ $CHANNEL == "DEV" ]]; then dart "bin/pub_build.dart" -p example -e "example/expected_warnings.json" else @@ -52,17 +52,25 @@ if [[ $TESTS == "dart2js" ]]; then fi ) else - # run io tests echo '--------------' echo '-- TEST: io --' echo '--------------' - dart -c test/io/all.dart + dart --checked test/io/all.dart + echo '----------------------------' + echo '-- TEST: symbol extractor --' + echo '----------------------------' dart --checked test/tools/symbol_inspector/symbol_inspector_spec.dart ./scripts/generate-expressions.sh ./scripts/analyze.sh + echo '-----------------------' + echo '-- TEST: transformer --' + echo '-----------------------' + dart --checked test/tools/transformer/all.dart + + echo '---------------------' echo '-- TEST: changelog --' echo '---------------------'