| OLD | NEW |
| (Empty) |
| 1 #!/bin/bash | |
| 2 | |
| 3 # Copyright (c) 2015, Google Inc. Please see the AUTHORS file for details. | |
| 4 # All rights reserved. Use of this source code is governed by a BSD-style | |
| 5 # license that can be found in the LICENSE file. | |
| 6 | |
| 7 # Fast fail the script on failures. | |
| 8 set -e | |
| 9 | |
| 10 # Verify that the libraries are error and warning-free. | |
| 11 echo "Running dartanalyzer..." | |
| 12 libs=$(find lib -maxdepth 1 -type f -name '*.dart') | |
| 13 dartanalyzer $DARTANALYZER_FLAGS $libs test/js_util_test.dart | |
| 14 | |
| 15 # Run the tests. | |
| 16 echo "Running tests..." | |
| 17 pub run test:test -p content-shell | |
| OLD | NEW |