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

Unified Diff: tool/transformer_test.sh

Issue 1788973002: Remove code that requires whole-program compile (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merged Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tool/presubmit.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/transformer_test.sh
diff --git a/tool/transformer_test.sh b/tool/transformer_test.sh
deleted file mode 100755
index 097e8244fe7610e292587ddee481861c486e7247..0000000000000000000000000000000000000000
--- a/tool/transformer_test.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-set -eu
-cd $( dirname "${BASH_SOURCE[0]}" )/..
-
-export CHROME_CANARY_BIN=`./tool/get_chrome_canary.sh`
-
-# TODO(vsm): Re-enable when this is addressed:
-# https://github.com/dart-lang/dev_compiler/issues/467
-# echo "*** Testing pub serve + DDC transformer"
-# pub run test --timeout 120s test/transformer_e2e_test.dart
-# echo "*** Pub serve e2e test finished"
-
-echo "*** Testing pub build + DDC transformer"
-cd test/transformer/hello_app
-rm -f pubspec.lock
-pub get
-pub build
-echo "*** Pub build finished"
-
-expected_files=(
- build/web/hello_app/web/index.html
- build/web/hello_app/web/main.js
- build/web/hello_dep/simple.js
- build/web/hello_dep/utils.js
- # This is not an exhaustive check:
- build/web/dev_compiler/runtime/dart/_runtime.js
-)
-
-for file in "${expected_files[@]}" ; do
- if [[ ! -f $file ]]; then
- echo "Didn't find $file in build:"
- find build | grep -v /packages/
- exit 1
- fi
-done
« no previous file with comments | « tool/presubmit.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698