| OLD | NEW |
| (Empty) |
| 1 #!/bin/bash | |
| 2 # Copyright (c) 2011, 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 set -e | |
| 7 | |
| 8 make -q || make | |
| 9 | |
| 10 function listDartFiles() { | |
| 11 find "$@" \ | |
| 12 \( -name xcodebuild -o -name out -o -name eclipse.workspace \) -prune -o \ | |
| 13 -name \*.dart -print | |
| 14 } | |
| 15 | |
| 16 # BUG(5275207): Update grammar instead of filtering out the | |
| 17 # interpolation test. | |
| 18 listDartFiles ../../runtime | \ | |
| 19 grep -v NegativeTest | \ | |
| 20 grep -v PrivateTest.dart | \ | |
| 21 xargs java -jar out/dart.jar | |
| 22 | |
| 23 listDartFiles ../../corelib | \ | |
| 24 grep -v NegativeTest | \ | |
| 25 xargs java -jar out/dart.jar | |
| 26 | |
| 27 listDartFiles ../../compiler | \ | |
| 28 grep -v Negative | \ | |
| 29 xargs java -jar out/dart.jar | |
| 30 | |
| 31 # BUG(5275207): Update grammar instead of filtering out the | |
| 32 # code that relies on fancy interpolation (Value.dart). | |
| 33 listDartFiles ../../client | \ | |
| 34 grep -v NegativeTest | \ | |
| 35 grep -v Value.dart | \ | |
| 36 xargs java -jar out/dart.jar | |
| 37 | |
| 38 listDartFiles ../../tests | \ | |
| 39 grep -v NegativeTest | \ | |
| 40 grep -v StaticTopLevelTest.dart | \ | |
| 41 grep -v StringInterpolate2Test.dart | \ | |
| 42 xargs java -jar out/dart.jar | |
| 43 | |
| 44 listDartFiles ../../samples | \ | |
| 45 xargs java -jar out/dart.jar | |
| 46 | |
| 47 listDartFiles .. | \ | |
| 48 grep -v NegativeTest | \ | |
| 49 xargs java -jar out/dart.jar | |
| OLD | NEW |