Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

chore(travis): run transformer tests #942

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions scripts/travis/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 '---------------------'
Expand Down