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

Fix Non-Deterministic Pivot Test #987

Merged
merged 1 commit into from
Mar 25, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions rxjava-core/src/test/java/rx/operators/OperatorPivotTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,10 @@ private void setMaxConcurrency(final AtomicInteger maxOuterConcurrency, int oute
ts.awaitTerminalEvent();

System.out.println("onNext [" + ts.getOnNextEvents().size() + "]: " + ts.getOnNextEvents());
System.out.println("max outer concurrency: " + maxOuterConcurrency.get());
assertTrue(maxOuterConcurrency.get() > 2); // should be 4 since we have 4 threads running but setting at 3 as this is somewhat non-deterministic
if (Runtime.getRuntime().availableProcessors() >= 4) {
System.out.println("max outer concurrency: " + maxOuterConcurrency.get());
assertTrue(maxOuterConcurrency.get() > 1); // should be 4 since we have 4 threads and cores running but setting at just > 1 as this is non-deterministic
}
System.out.println("max group concurrency: " + maxGroupConcurrency.get());
assertTrue(maxGroupConcurrency.get() == 1); // should always be 1

Expand Down