RFR: 7903750: TimeBudget (-tb) does not fulfill its promisses [v5]
Jiří Vaněk
jvanek at openjdk.org
Fri Mar 21 19:06:20 UTC 2025
On Fri, 21 Mar 2025 12:48:10 GMT, Jiří Vaněk <jvanek at openjdk.org> wrote:
>> jcstress-core/src/main/java/org/openjdk/jcstress/TimeBudget.java line 152:
>>
>>> 150: boolean print=false;
>>> 151: if (expectedPerTest > budget.milliseconds() * 2l) {
>>> 152: System.out.println(" + +++ FATAL - your tests will never finish as expected. They will run much longer ");
>>
>> I don't think you should assume `System.out`. All these prints should be on a given `PrintStream out`, see `printOn()` method.
>>
>> The formatting of the message does not seem to adhere to other messages. You should see how messages are printed elsewhere in the code and try to use same format? E.g.
>>
>>
>> out.println("FATAL: No matching tests.")
>>
>>
>> Also, about this particular message, if this is fatal jcstress should not run. I don't think this is really happening here. The `print=true` does not cause jcstress not to run.
>
> Damn, sorry for this. This was changed globa-wide recently, and I had kept it correctly in all prs. Obviously I had become less vigilant at the end, sorry. Fixed here and also in one more PR which was affected.
> ```
> out.println("FATAL: No matching tests.")
> ```
>
> Also, about this particular message, if this is fatal jcstress should not run. I don't think this is really happening here. The `print=true` does not cause jcstress not to run.
forget to reply this. Yes. it will die correctly later.
-------------
PR Review Comment: https://git.openjdk.org/jcstress/pull/161#discussion_r2008176275
More information about the jcstress-dev
mailing list