We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
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.
The text was updated successfully, but these errors were encountered:
Added Accepted label.
Sorry, something went wrong.
Fixed at r7889.
Added Fixed label.
crelier
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: