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

some co19 tests are timing out in checked mode #331

Closed
a-siva opened this issue Nov 4, 2011 · 2 comments
Closed

some co19 tests are timing out in checked mode #331

a-siva opened this issue Nov 4, 2011 · 2 comments
Assignees
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.

Comments

@a-siva
Copy link
Contributor

a-siva commented Nov 4, 2011

The following co19 tests are timing out in checked mode.

LibTest/core/Queue/add/Queue/add/A01/t01: Timeout
LibTest/core/Queue/addLast/Queue/addLast/A01/t01: Timeout
LibTest/core/Queue/iterator_hasNext/Queue/iterator/hasNext/A01/t01: Timeout

main() {
  Queue queue = new Queue();
  for (var i = 0; i <= 10000; i++) {
    queue.add(i);
    Expect.equals(i, queue.last());
    Expect.equals(i+1, queue.length);
  }
}

I am marking these tests as skip in the status file with this issue number tagged to it.

@iposva-google
Copy link
Contributor

Added Accepted label.

@crelier
Copy link
Contributor

crelier commented May 23, 2012

Fixed at r7889.


Added Fixed label.

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

3 participants