We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fcf5b0 commit 1adada4Copy full SHA for 1adada4
cpp/tests/streaming/test_read_parquet.cpp
@@ -114,10 +114,9 @@ INSTANTIATE_TEST_SUITE_P(
114
);
115
116
TEST_P(StreamingReadParquetThrottle, NonPositiveThrottleThrows) {
117
- if (GlobalEnvironment->comm_->nranks() > 1) {
118
- // Test is independent of size of communicator, so don't bother if we
119
- // have more than one rank.
120
- GTEST_SKIP();
+ if (GlobalEnvironment->comm_->rank() != 0) {
+ // Test is independent of size of communicator.
+ GTEST_SKIP() << "Test only runs on rank zero";
121
}
122
int max_tickets = GetParam();
123
auto source = get_source_info();
0 commit comments