@@ -115,6 +115,7 @@ void tearDown() {
115115 @ ParameterizedTest
116116 @ MethodSource ("sleepTimes" )
117117 public void shutdownDuringValidation (int sleepMillis ) {
118+ System .out .println (Thread .currentThread () + " shutdownDuringValidation with sleepMillis=" + sleepMillis );
118119 try {
119120// clear interrupted flag
120121 Thread .interrupted ();
@@ -174,6 +175,8 @@ public void shutdownDuringValidation(int sleepMillis) {
174175 @ ParameterizedTest
175176 @ MethodSource ("sleepTimes" )
176177 public void shutdownDuringValidationTransactional (int sleepMillis ) {
178+ System .out .println (
179+ Thread .currentThread () + " shutdownDuringValidationTransactional with sleepMillis=" + sleepMillis );
177180 try {
178181// clear interrupted flag
179182 Thread .interrupted ();
@@ -239,6 +242,7 @@ public void shutdownDuringValidationTransactional(int sleepMillis) {
239242 @ ParameterizedTest
240243 @ MethodSource ("sleepTimes" )
241244 public void shutdownDuringValidationFailure (int sleepMillis ) {
245+ System .out .println (Thread .currentThread () + " shutdownDuringValidationFailure with sleepMillis=" + sleepMillis );
242246 try {
243247
244248// clear interrupted flag
@@ -298,6 +302,8 @@ public void shutdownDuringValidationFailure(int sleepMillis) {
298302 @ ParameterizedTest
299303 @ MethodSource ("sleepTimes" )
300304 public void shutdownDuringValidationFailureNonParallel (int sleepMillis ) {
305+ System .out .println (
306+ Thread .currentThread () + " shutdownDuringValidationFailureNonParallel with sleepMillis=" + sleepMillis );
301307 try {
302308// clear interrupted flag
303309 Thread .interrupted ();
@@ -358,6 +364,8 @@ public void shutdownDuringValidationFailureNonParallel(int sleepMillis) {
358364 @ ParameterizedTest
359365 @ MethodSource ("sleepTimes" )
360366 public void shutdownDuringValidationTransactionalNonParallel (int sleepMillis ) {
367+ System .out .println (Thread .currentThread ()
368+ + " shutdownDuringValidationTransactionalNonParallel with sleepMillis=" + sleepMillis );
361369 try {
362370 // clear interrupted flag
363371 boolean interrupted = Thread .interrupted ();
@@ -430,6 +438,7 @@ public void shutdownDuringValidationTransactionalNonParallel(int sleepMillis) {
430438
431439 @ Test
432440 void nestedInterruptedExceptionShouldBeDetected () {
441+ System .out .println (Thread .currentThread () + " nestedInterruptedExceptionShouldBeDetected" );
433442 InterruptedException interruptedException = new InterruptedException ("nested" );
434443 SailException sailException = new SailException ("wrapper" , new SailException ("inner" , interruptedException ));
435444 RepositoryException repositoryException = new RepositoryException ("top" , sailException );
0 commit comments