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

Unified Diff: test/run.sh

Issue 11293285: Fixes #163 - small fix in the mangling logic, renames all expected test files (Closed) Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 years, 1 month 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
Index: test/run.sh
diff --git a/test/run.sh b/test/run.sh
index 2eb5ea86294a7c7e9c150da33927d7ef85773de8..6e4cd5c7c159c590a9deeb86ff03a2b24d4af4dd 100755
--- a/test/run.sh
+++ b/test/run.sh
@@ -82,12 +82,12 @@ popd
# wrapper that sets `--enable-type-checks --enable-asserts`
for input in $DIR/data/input/*_test.html; do
if [[ ($TEST_PATTERN == "") || ($input =~ $TEST_PATTERN) ]]; then
- FILENAME=`basename $input.html`
+ FILENAME=`basename $input`
echo -e -n "Testing $FILENAME "
DUMP="$DIR/data/output/$FILENAME.txt"
EXPECTATION="$DIR/data/expected/$FILENAME.txt"
DART_PACKAGE_ROOT="file://$DIR/packages/" \
- DumpRenderTree $DIR/data/output/_$FILENAME > $DUMP
+ DumpRenderTree $DIR/data/output/$FILENAME > $DUMP
compare $EXPECTATION $DUMP
fi
« lib/src/compiler.dart ('K') | « test/data/expected/watch_global_var_test.html.html.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698