test.dart: Push all required files to Android device when running AOT tests

Some tests have resources in sub-directories (e.g. certificates/)

Remove status file lines for tests that are now passing.

Fixes #26376,#26377.

R=rmacnak@google.com

Review URL: https://codereview.chromium.org/2434123002 .
This commit is contained in:
Florian Schneider 2016-10-19 16:50:23 -07:00
parent 47150f50d5
commit b85f900cb7
2 changed files with 0 additions and 11 deletions

View file

@ -326,16 +326,6 @@ link_natives_lazily_test: SkipByDesign
# SIMDBC interpreter doesn't support --no_lazy_dispatchers
no_lazy_dispatchers_test: SkipByDesign
[ $compiler == precompiler && $runtime == dart_precompiled && $system == android ]
io/*: Skip # Issue #26376
typed_data_isolate_test: Skip # Issue #26376
typed_array_test: Skip # Issue #26376
typed_array_int64_uint64_test: Skip # Issue #26376
oom_error_stacktrace_test: Skip # Issue #26377
out_of_memory_test: Skip # Issue #26377
[ $runtime == vm || $runtime == dart_app || $runtime == dart_precompiled ]
deferred_transitive_import_error_test: Skip # Contains intentional errors.

View file

@ -2582,7 +2582,6 @@ class CommandExecutorImpl implements CommandExecutor {
// directory.
List<String> files = new io.Directory(testdir)
.listSync()
.where((fse) => fse is io.File)
.map((file) => file.path)
.map((path) => path.substring(path.lastIndexOf('/') + 1))
.toList();