@@ -355,6 +355,26 @@ private void testStartConfined(ThreadFlock flock,
355
355
}
356
356
}
357
357
358
+ /**
359
+ * Test that start inherits scope-local bindings.
360
+ */
361
+ @ Test (dataProvider = "factories" )
362
+ public void testStartInheritsScopeLocals (ThreadFactory factory ) throws Exception {
363
+ ScopeLocal <String > NAME = ScopeLocal .newInstance ();
364
+ String value = ScopeLocal .where (NAME , "fred" ).call (() -> {
365
+ var result = new AtomicReference <String >();
366
+ try (var flock = ThreadFlock .open (null )) {
367
+ Thread thread = factory .newThread (() -> {
368
+ // child
369
+ result .set (NAME .get ());
370
+ });
371
+ flock .start (thread );
372
+ }
373
+ return result .get ();
374
+ });
375
+ assertEquals (value , "fred" );
376
+ }
377
+
358
378
/**
359
379
* Test awaitAll with no threads.
360
380
*/
@@ -1055,6 +1075,21 @@ public void testStructureViolation5() {
1055
1075
}
1056
1076
}
1057
1077
1078
+ /**
1079
+ * Test that start throws StructureViolationException if scope-local bindings
1080
+ * have changed.
1081
+ */
1082
+ @ Test (dataProvider = "factories" )
1083
+ public void testStructureViolation6 (ThreadFactory factory ) throws Exception {
1084
+ ScopeLocal <String > NAME = ScopeLocal .newInstance ();
1085
+ try (var flock = ThreadFlock .open (null )) {
1086
+ ScopeLocal .where (NAME , "fred" ).run (() -> {
1087
+ Thread thread = factory .newThread (() -> { });
1088
+ expectThrows (StructureViolationException .class , () -> flock .start (thread ));
1089
+ });
1090
+ }
1091
+ }
1092
+
1058
1093
/**
1059
1094
* Test Thread exiting with an open flock. The exiting thread should close the flock.
1060
1095
*/
0 commit comments