Re: dealing with tester timeout in a CI job

2022-08-17 Thread Weston Pace
t; From: Weston Pace > > Sent: Wednesday, August 17, 2022 10:05 AM > > To: dev@arrow.apache.org > > Subject: Re: dealing with tester timeout in a CI job > > > > My first suspicion on a test timeout is usually a deadlock. That > > being said, I haven't looked at this te

Re: dealing with tester timeout in a CI job

2022-08-17 Thread Antoine Pitrou
idea, just looking for an example use of SCOPED_TEST. Yaron. From: Weston Pace Sent: Wednesday, August 17, 2022 10:05 AM To: dev@arrow.apache.org Subject: Re: dealing with tester timeout in a CI job My first suspicion on a test timeout is usually a deadlock

Re: dealing with tester timeout in a CI job

2022-08-17 Thread Yaron Gvili
. From: Weston Pace Sent: Wednesday, August 17, 2022 10:05 AM To: dev@arrow.apache.org Subject: Re: dealing with tester timeout in a CI job My first suspicion on a test timeout is usually a deadlock. That being said, I haven't looked at this test / change in any real detail so I

Re: dealing with tester timeout in a CI job

2022-08-17 Thread Weston Pace
le alternatives are. > > > Yaron. > > From: Li Jin > Sent: Wednesday, August 17, 2022 9:04 AM > To: dev@arrow.apache.org > Subject: Re: dealing with tester timeout in a CI job > > Yaron, how does the asof join tests normally take? > >

Re: dealing with tester timeout in a CI job

2022-08-17 Thread Yaron Gvili
are. Yaron. From: Li Jin Sent: Wednesday, August 17, 2022 9:04 AM To: dev@arrow.apache.org Subject: Re: dealing with tester timeout in a CI job Yaron, how does the asof join tests normally take? On Wed, Aug 17, 2022 at 6:13 AM Yaron Gvili wrote: > Sorry, yes

Re: dealing with tester timeout in a CI job

2022-08-17 Thread Li Jin
to avoid a > timeout without reengineering or reducing the set of tests I wrote, hence > my questions. > > > Yaron. > > From: Sutou Kouhei > Sent: Tuesday, August 16, 2022 8:13 PM > To: dev@arrow.apache.org > Subject: Re: dealing with test

Re: dealing with tester timeout in a CI job

2022-08-17 Thread Yaron Gvili
. From: Sutou Kouhei Sent: Tuesday, August 16, 2022 8:13 PM To: dev@arrow.apache.org Subject: Re: dealing with tester timeout in a CI job Hi, What language are you talking about? C++? For C++, we have two timeouts: * GitHub Action's timeout * GTest's timeout Could you show

Re: dealing with tester timeout in a CI job

2022-08-16 Thread Sutou Kouhei
Hi, What language are you talking about? C++? For C++, we have two timeouts: * GitHub Action's timeout * GTest's timeout Could you show the URL of the failed macOS related CI job? Thanks, -- kou In "dealing with tester timeout in a CI job" on Tue, 16 Aug 2022 16:34:24 +000

dealing with tester timeout in a CI job

2022-08-16 Thread Yaron Gvili
Hi, What are some acceptable ways to handle a timeout failure in a CI job for a tester I implemented? For reference, I got such a timeout for only one MacOS related CI job, while the other CI jobs did not get such a timeout. Let's assume that I cannot (easily) make the tests run any faster. Is