File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
test/framework/src/main/java/org/elasticsearch/test Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 285285 * </ul>
286286 */
287287@ LuceneTestCase .SuppressFileSystems ("ExtrasFS" ) // doesn't work with potential multi data path from test cluster yet
288+ @ ESTestCase .WithoutEntitlements // ES-12042
288289public abstract class ESIntegTestCase extends ESTestCase {
289290
290291 /** node names of the corresponding clusters will start with these prefixes */
Original file line number Diff line number Diff line change 9090 * A test that keep a singleton node started for all tests that can be used to get
9191 * references to Guice injectors in unit tests.
9292 */
93+ @ ESTestCase .WithoutEntitlements // ES-12042
9394public abstract class ESSingleNodeTestCase extends ESTestCase {
9495
9596 private static Node NODE = null ;
Original file line number Diff line number Diff line change 164164import java .io .IOException ;
165165import java .io .InputStream ;
166166import java .lang .annotation .ElementType ;
167+ import java .lang .annotation .Inherited ;
167168import java .lang .annotation .Retention ;
168169import java .lang .annotation .RetentionPolicy ;
169170import java .lang .annotation .Target ;
@@ -500,6 +501,7 @@ protected void afterIfSuccessful() throws Exception {}
500501 */
501502 @ Retention (RetentionPolicy .RUNTIME )
502503 @ Target (ElementType .TYPE )
504+ @ Inherited
503505 public @interface WithoutEntitlements {
504506 }
505507
@@ -509,6 +511,7 @@ protected void afterIfSuccessful() throws Exception {}
509511 */
510512 @ Retention (RetentionPolicy .RUNTIME )
511513 @ Target (ElementType .TYPE )
514+ @ Inherited
512515 public @interface WithEntitlementsOnTestCode {
513516 }
514517
You can’t perform that action at this time.
0 commit comments