Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VM test IsolateInterrupt sometimes times out on Windows #906

Closed
sgjesse opened this issue Dec 19, 2011 · 1 comment
Closed

VM test IsolateInterrupt sometimes times out on Windows #906

sgjesse opened this issue Dec 19, 2011 · 1 comment
Assignees
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.

Comments

@sgjesse
Copy link
Contributor

sgjesse commented Dec 19, 2011

Looks as if only 2 out of 3 interrupts are received. See test output after all the warnings below.

=== debugia32 vm vm/IsolateInterrupt ===
Path: vm/IsolateInterrupt

--- stdout ---
Running test: IsolateInterrupt
'bootstrap': Warning: line 429 pos 35: 'factory' is obsolete, use 'default' instead.
interface Date extends Comparable factory DateImplementation {
                                  ^
'bootstrap': Warning: line 631 pos 39: 'factory' is obsolete, use 'default' instead.
interface Duration extends Comparable factory DurationImplementation {
                                      ^
'bootstrap': Warning: line 697 pos 21: 'factory' is obsolete, use 'default' instead.
interface Exception factory ExceptionImplementation {
                    ^
'bootstrap': Warning: line 1117 pos 21: 'factory' is obsolete, use 'default' instead.
interface Future<T> factory FutureImpl<T> {
                    ^
'bootstrap': Warning: line 1191 pos 24: 'factory' is obsolete, use 'default' instead.
interface Completer<T> factory CompleterImpl<T> {
                       ^
'bootstrap': Warning: line 1339 pos 23: 'factory' is obsolete, use 'default' instead.
interface ReceivePort factory ReceivePortFactory {
                      ^
'bootstrap': Warning: line 1619 pos 21: 'factory' is obsolete, use 'default' instead.
interface Map<K, V> factory HashMapImplementation/<K extends Hashable, V>/ {
                    ^
'bootstrap': Warning: line 1619 pos 29: class ':factory_signature' in default clause of interface 'Map' is missing its type parameter list.

interface Map<K, V> factory HashMapImplementation/<K extends Hashable, V>/ {
                            ^
'bootstrap': Warning: line 1708 pos 5: 'factory' is obsolete, use 'default' instead.
    factory HashMapImplementation {
    ^
'bootstrap': Warning: line 1708 pos 13: class ':factory_signature' in default clause of interface 'HashMap' is missing its type parameter list.

    factory HashMapImplementation {
            ^
'bootstrap': Warning: line 1727 pos 5: 'factory' is obsolete, use 'default' instead.
    factory LinkedHashMapImplementation {
    ^
'bootstrap': Warning: line 1727 pos 13: class ':factory_signature' in default clause of interface 'LinkedHashMap' is missing its type parameter list.

    factory LinkedHashMapImplementation {
            ^
'bootstrap': Warning: line 1748 pos 41: 'factory' is obsolete, use 'default' instead.
interface List<E> extends Collection<E> factory ListFactory {
                                        ^
'bootstrap': Warning: line 1748 pos 49: class ':factory_signature' in default clause of interface 'List' is missing its type parameter list.

interface List<E> extends Collection<E> factory ListFactory {
                                                ^
'bootstrap': Warning: line 1953 pos 19: 'factory' is obsolete, use 'default' instead.
interface Options factory RuntimeOptions {
                  ^
'bootstrap': Warning: line 1981 pos 22: 'factory' is obsolete, use 'default' instead.
interface Promise<T> factory PromiseImpl<T> {
                     ^
'bootstrap': Warning: line 2066 pos 39: 'factory' is obsolete, use 'default' instead.
interface Proxy extends Promise<bool> factory ProxyImpl {
                                      ^
'bootstrap': Warning: line 2399 pos 42: 'factory' is obsolete, use 'default' instead.
interface Queue<E> extends Collection<E> factory DoubleLinkedQueue<E> {
                                         ^
'bootstrap': Warning: line 2553 pos 34: 'factory' is obsolete, use 'default' instead.
interface RegExp extends Pattern factory JSSyntaxRegExp {
                                 ^
'bootstrap': Warning: line 2608 pos 5: 'factory' is obsolete, use 'default' instead.
    factory HashSetImplementation {
    ^
'bootstrap': Warning: line 2608 pos 13: class ':factory_signature' in default clause of interface 'Set' is missing its type parameter list.

    factory HashSetImplementation {
            ^
'bootstrap': Warning: line 2671 pos 5: 'factory' is obsolete, use 'default' instead.
    factory HashSetImplementation {
    ^
'bootstrap': Warning: line 2671 pos 13: class ':factory_signature' in default clause of interface 'HashSet' is missing its type parameter list.

    factory HashSetImplementation {
            ^
'bootstrap': Warning: line 2687 pos 21: 'factory' is obsolete, use 'default' instead.
interface Stopwatch factory StopwatchImplementation {
                    ^
'bootstrap': Warning: line 2756 pos 56: 'factory' is obsolete, use 'default' instead.
interface String extends Comparable, Hashable, Pattern factory Strings {
                                                       ^
'bootstrap': Warning: line 2919 pos 24: 'factory' is obsolete, use 'default' instead.
interface StringBuffer factory StringBufferImpl {
                       ^
'bootstrap': Warning: line 2964 pos 20: 'factory' is obsolete, use 'default' instead.
interface TimeZone factory TimeZoneImplementation {
                   ^
'bootstrap': Warning: line 1748 pos 49: class 'ListFactory' in factory clause of interface 'List' is missing its type parameter list.

interface List<E> extends Collection<E> factory ListFactory {
                                                ^
'bootstrap': Warning: line 1619 pos 29: class 'HashMapImplementation' in factory clause of interface 'Map' is missing its type parameter list.

interface Map<K, V> factory HashMapImplementation/<K extends Hashable, V>/ {
                            ^
'bootstrap': Warning: line 1708 pos 13: class 'HashMapImplementation' in factory clause of interface 'HashMap' is missing its type parameter list.

    factory HashMapImplementation {
            ^
'bootstrap': Warning: line 1727 pos 13: class 'LinkedHashMapImplementation' in factory clause of interface 'LinkedHashMap' is missing its type parameter list.

    factory LinkedHashMapImplementation {
            ^
'bootstrap': Warning: line 2608 pos 13: class 'HashSetImplementation' in factory clause of interface 'Set' is missing its type parameter list.

    factory HashSetImplementation {
            ^
'bootstrap': Warning: line 2671 pos 13: class 'HashSetImplementation' in factory clause of interface 'HashSet' is missing its type parameter list.

    factory HashSetImplementation {
            ^
'bootstrap': Warning: line 429 pos 35: 'factory' is obsolete, use 'default' instead.
interface Date extends Comparable factory DateImplementation {
                                  ^
'bootstrap': Warning: line 631 pos 39: 'factory' is obsolete, use 'default' instead.
interface Duration extends Comparable factory DurationImplementation {
                                      ^
'bootstrap': Warning: line 697 pos 21: 'factory' is obsolete, use 'default' instead.
interface Exception factory ExceptionImplementation {
                    ^
'bootstrap': Warning: line 1117 pos 21: 'factory' is obsolete, use 'default' instead.
interface Future<T> factory FutureImpl<T> {
                    ^
'bootstrap': Warning: line 1191 pos 24: 'factory' is obsolete, use 'default' instead.
interface Completer<T> factory CompleterImpl<T> {
                       ^
'bootstrap': Warning: line 1339 pos 23: 'factory' is obsolete, use 'default' instead.
interface ReceivePort factory ReceivePortFactory {
                      ^
'bootstrap': Warning: line 1619 pos 21: 'factory' is obsolete, use 'default' instead.
interface Map<K, V> factory HashMapImplementation/<K extends Hashable, V>/ {
                    ^
'bootstrap': Warning: line 1619 pos 29: class ':factory_signature' in default clause of interface 'Map' is missing its type parameter list.

interface Map<K, V> factory HashMapImplementation/<K extends Hashable, V>/ {
                            ^
'bootstrap': Warning: line 1708 pos 5: 'factory' is obsolete, use 'default' instead.
    factory HashMapImplementation {
    ^
'bootstrap': Warning: line 1708 pos 13: class ':factory_signature' in default clause of interface 'HashMap' is missing its type parameter list.

    factory HashMapImplementation {
            ^
'bootstrap': Warning: line 1727 pos 5: 'factory' is obsolete, use 'default' instead.
    factory LinkedHashMapImplementation {
    ^
'bootstrap': Warning: line 1727 pos 13: class ':factory_signature' in default clause of interface 'LinkedHashMap' is missing its type parameter list.

    factory LinkedHashMapImplementation {
            ^
'bootstrap': Warning: line 1748 pos 41: 'factory' is obsolete, use 'default' instead.
interface List<E> extends Collection<E> factory ListFactory {
                                        ^
'bootstrap': Warning: line 1748 pos 49: class ':factory_signature' in default clause of interface 'List' is missing its type parameter list.

interface List<E> extends Collection<E> factory ListFactory {
                                                ^
'bootstrap': Warning: line 1953 pos 19: 'factory' is obsolete, use 'default' instead.
interface Options factory RuntimeOptions {
                  ^
'bootstrap': Warning: line 1981 pos 22: 'factory' is obsolete, use 'default' instead.
interface Promise<T> factory PromiseImpl<T> {
                     ^
'bootstrap': Warning: line 2066 pos 39: 'factory' is obsolete, use 'default' instead.
interface Proxy extends Promise<bool> factory ProxyImpl {
                                      ^
'bootstrap': Warning: line 2399 pos 42: 'factory' is obsolete, use 'default' instead.
interface Queue<E> extends Collection<E> factory DoubleLinkedQueue<E> {
                                         ^
'bootstrap': Warning: line 2553 pos 34: 'factory' is obsolete, use 'default' instead.
interface RegExp extends Pattern factory JSSyntaxRegExp {
                                 ^
'bootstrap': Warning: line 2608 pos 5: 'factory' is obsolete, use 'default' instead.
    factory HashSetImplementation {
    ^
'bootstrap': Warning: line 2608 pos 13: class ':factory_signature' in default clause of interface 'Set' is missing its type parameter list.

    factory HashSetImplementation {
            ^
'bootstrap': Warning: line 2671 pos 5: 'factory' is obsolete, use 'default' instead.
    factory HashSetImplementation {
    ^
'bootstrap': Warning: line 2671 pos 13: class ':factory_signature' in default clause of interface 'HashSet' is missing its type parameter list.

    factory HashSetImplementation {
            ^
'bootstrap': Warning: line 2687 pos 21: 'factory' is obsolete, use 'default' instead.
interface Stopwatch factory StopwatchImplementation {
                    ^
'bootstrap': Warning: line 2756 pos 56: 'factory' is obsolete, use 'default' instead.
interface String extends Comparable, Hashable, Pattern factory Strings {
                                                       ^
'bootstrap': Warning: line 2919 pos 24: 'factory' is obsolete, use 'default' instead.
interface StringBuffer factory StringBufferImpl {
                       ^
'bootstrap': Warning: line 2964 pos 20: 'factory' is obsolete, use 'default' instead.
interface TimeZone factory TimeZoneImplementation {
                   ^
'bootstrap': Warning: line 1748 pos 49: class 'ListFactory' in factory clause of interface 'List' is missing its type parameter list.

interface List<E> extends Collection<E> factory ListFactory {
                                                ^
'bootstrap': Warning: line 1619 pos 29: class 'HashMapImplementation' in factory clause of interface 'Map' is missing its type parameter list.

interface Map<K, V> factory HashMapImplementation/<K extends Hashable, V>/ {
                            ^
'bootstrap': Warning: line 1708 pos 13: class 'HashMapImplementation' in factory clause of interface 'HashMap' is missing its type parameter list.

    factory HashMapImplementation {
            ^
'bootstrap': Warning: line 1727 pos 13: class 'LinkedHashMapImplementation' in factory clause of interface 'LinkedHashMap' is missing its type parameter list.

    factory LinkedHashMapImplementation {
            ^
'bootstrap': Warning: line 2608 pos 13: class 'HashSetImplementation' in factory clause of interface 'Set' is missing its type parameter list.

    factory HashSetImplementation {
            ^
'bootstrap': Warning: line 2671 pos 13: class 'HashSetImplementation' in factory clause of interface 'HashSet' is missing its type parameter list.

    factory HashSetImplementation {
            ^
 =========== Interrupt callback called #­1
 =========== Interrupt callback called #­2
Command: Debug_ia32\run_vm_tests.exe IsolateInterrupt --ignore-unrecognized-flags

--- TIMEOUT ---

===
=== 1 test failed
===

@sgjesse
Copy link
Contributor Author

sgjesse commented Dec 20, 2011

Fixed in https://code.google.com/p/dart/source/detail?r=2616


Added Fixed label.

@sgjesse sgjesse added Type-Defect area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. labels Dec 20, 2011
@sgjesse sgjesse self-assigned this Dec 20, 2011
copybara-service bot pushed a commit that referenced this issue Dec 11, 2023
…h, protobuf, sync_http, test, tools, web, webdev

Revisions updated by `dart tools/rev_sdk_deps.dart`.

ecosystem (https://github.com/dart-lang/ecosystem/compare/79a1bc5..ce707fb):
  ce707fb  2023-12-06  Moritz  Use Flutter in `health.yaml` (#206)

fixnum (https://github.com/dart-lang/fixnum/compare/6b0888c..3e08c0d):
  3e08c0d  2023-12-04  Kevin Moore  drop outdated lints (#123)

http_parser (https://github.com/dart-lang/http_parser/compare/1cf5b7c..224c1a9):
  224c1a9  2023-12-04  Kevin Moore  drop outdated lints (#82)

leak_tracker (https://github.com/dart-lang/leak_tracker/compare/a618a55..8644f8b):
  8644f8b  2023-12-11  Lucas.Xu  chore: bump leak_tracking_flutter_testing version to 1.0.12-wip (#192)
  cac195d  2023-12-11  Binni Goel  Fix. typos in leak_tracker (#189)
  9fd7932  2023-12-11  Lucas.Xu  fix: add missing on leak callback (#190)
  1ab3140  2023-12-08  Lucas.Xu  chore: refactor code style (#186)

mockito (https://github.com/dart-lang/mockito/compare/fb8a2b5..57a7c82):
  57a7c82  2023-12-06  Copybara-Service  Merge pull request #721 from Sese-Schneider:master
  c5de658  2023-12-06  Sese Schneider  Apply suggestions from code review
  1a652b8  2023-11-21  Sebastian Schneider  Use `posix` style for local imports

path (https://github.com/dart-lang/path/compare/18ec71f..115ea2a):
  115ea2a  2023-12-05  Devon Carew  rev the version of lints used; prep for publishing (#155)

protobuf (https://github.com/dart-lang/protobuf/compare/bb19774..20ec685):
  20ec685  2023-12-05  Ömer Sinan Ağacan  Small PbList improvements (#906)

sync_http (https://github.com/dart-lang/sync_http/compare/d8e9f3d..f96db95):
  f96db95  2023-12-05  Kevin Moore  Latest lints, require Dart 3.0, use mini-libraries (#42)

test (https://github.com/dart-lang/test/compare/9fffb48..43ff5bf):
  43ff5bf9  2023-12-11  Ömer Sinan Ağacan  Fix Dart2Wasm spelling (#2155)
  7d61eef9  2023-12-08  Derek Xu  Update frontend_server_client constraint to allow version 4.0.0 (#2153)
  001c5381  2023-12-07  Jacob MacDonald  fix precompiled vm tests loaded from a package: uri (#2152)
  fb3b5725  2023-12-05  Nate Bosch  Use package: URIs for imports when possible (#2148)
  03cc56ec  2023-12-05  Jacob MacDonald  mark flaky windows test as skipped (#2151)
  6e7e4fa8  2023-12-05  Jacob MacDonald  Add regression test for relative imports in tests under `lib` (#2147)
  84c366a7  2023-12-05  Jacob MacDonald  fix broken tests (#2149)
  e49ae54b  2023-12-05  Jacob MacDonald  Promote dart2wasm compiler support to the stable browser platform. (#2144)

tools (https://github.com/dart-lang/tools/compare/c63dcb5..ed81684):
  ed81684  2023-12-06  Elias Yishak  Fix consent message formatting (#215)
  c4d515a  2023-12-05  Elias Yishak  Enum + event added for `commandUsageValues` (#211)

web (https://github.com/dart-lang/web/compare/865aeaf..acf0beb):
  acf0beb  2023-12-07  Devon Carew  fixes to the return types of several Node helper extension methods (#121)
  9d7b33e  2023-12-06  Srujan Gaddam  Handle Dart SDK change to extension types (#116)
  0ae45ec  2023-12-05  Devon Carew  Update README.md (#117)
  34b3618  2023-12-05  Devon Carew  have web.dart export the helpers; deprecate helpers.dart (#115)

webdev (https://github.com/dart-lang/webdev/compare/63e09e5..8375cd6):
  8375cd66  2023-12-08  Elliott Brooks  Add popup for copying the app ID (#2299)

Change-Id: Ibf5f5eca74c56bf31d50bddabbe9da2a2e6fd716
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/341021
Commit-Queue: Devon Carew <devoncarew@google.com>
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
Projects
None yet
Development

No branches or pull requests

1 participant