mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
d0510501d2
This CL adds support to build.py and test.py for building/testing a VM with the interpreter on x64, e.g.: $ ./tools/gn.py -m release -a x64 --bytecode $ ./tools/build.py -m release -a x64 --bytecode runtime $ ./tools/test.py -m release -a x64 -r vm -c dartkb language_2 Change-Id: I956d23790636609d4a2e71129481fcbd7afef9a0 Reviewed-on: https://dart-review.googlesource.com/65206 Commit-Queue: Zach Anderson <zra@google.com> Reviewed-by: Régis Crelier <regis@google.com> Reviewed-by: Alexander Markov <alexmarkov@google.com>
37 lines
1.7 KiB
Text
37 lines
1.7 KiB
Text
# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
[ $arch == arm ]
|
|
sample_extension/test/*: Skip # Issue 14705
|
|
|
|
[ $builder_tag == optimization_counter_threshold ]
|
|
sample_extension/test/sample_extension_app_snapshot_test: SkipByDesign # This test is too slow for testing with low optimization counter threshold.
|
|
|
|
[ $compiler == app_jit ]
|
|
sample_extension/test/sample_extension_app_snapshot_test: RuntimeError
|
|
|
|
[ $compiler == precompiler ]
|
|
sample_extension/test/*: Skip # These tests attempt to spawn another script using the precompiled runtime.
|
|
|
|
[ $compiler == dart2js && $runtime == none ]
|
|
*: Fail, Pass # TODO(ahe): Triage these tests.
|
|
|
|
[ $compiler == none && $mode == debug && $runtime == vm && $system == windows ]
|
|
sample_extension/test/sample_extension_app_snapshot_test: Pass, RuntimeError # Issue 28842
|
|
|
|
[ $compiler == none && $runtime == vm && $system == fuchsia ]
|
|
*: Skip # Not yet triaged.
|
|
|
|
[ $compiler == app_jitk || $compiler == dartk || $compiler == dartkb || $compiler == dartkp ]
|
|
sample_extension/test/sample_extension_app_snapshot_test: RuntimeError
|
|
sample_extension/test/sample_extension_script_snapshot_test: RuntimeError
|
|
sample_extension/test/sample_extension_test: RuntimeError
|
|
|
|
# Skip tests that use dart:io
|
|
[ $runtime == d8 || $browser ]
|
|
sample_extension/*: Skip
|
|
|
|
[ $hot_reload || $hot_reload_rollback ]
|
|
sample_extension/test/sample_extension_app_snapshot_test: SkipByDesign # Cannot reload with URI pointing to app snapshot.
|
|
sample_extension/test/sample_extension_script_snapshot_test: SkipByDesign # Cannot reload with URI pointing to script snapshot.
|