Skip to content

Instantly share code, notes, and snippets.

@liweinan
Last active June 21, 2022 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liweinan/c4ce56d8f9da6d4e8acda0dad9fa9a3c to your computer and use it in GitHub Desktop.
Save liweinan/c4ce56d8f9da6d4e8acda0dad9fa9a3c to your computer and use it in GitHub Desktop.
`ts.bootable` in wildfly
➤ grep -rn 'ts.bootable' *                                                                                                                                                                                                                                                                                      23:05:52
ee-9/source-transform/shared/target/generated-sources/transformed/org/jboss/as/test/shared/util/AssumeTestGroupUtil.java:106:        return System.getProperty("ts.ee9") != null || System.getProperty("ts.bootable.ee9") != null;
Binary file ee-9/source-transform/shared/target/classes/org/jboss/as/test/shared/util/AssumeTestGroupUtil.class matches
pom.xml:5875:                    <name>ts.bootable.ee9</name>
pom.xml:5952:                    <name>ts.bootable</name>
testsuite/integration/smoke/pom.xml:730:                    <name>ts.bootable</name>
testsuite/integration/smoke/pom.xml:843:                    <name>ts.bootable.ee9</name>
Binary file testsuite/integration/web/target/test-classes/org/jboss/as/test/integration/web/jsp/taglib/external/ExternalTagLibTestCase.class matches
testsuite/integration/web/pom.xml:915:                    <name>ts.bootable</name>
testsuite/integration/web/pom.xml:1147:                    <name>ts.bootable.ee9</name>
testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/jsp/taglib/external/ExternalTagLibTestCase.java:59:    private static final boolean isRunningWithBootableJar = Boolean.getBoolean("ts.bootable");
testsuite/integration/clustering/pom.xml:226:                        <id>ts.bootable.configure-windows-paths</id>
testsuite/integration/clustering/pom.xml:1990:                    <name>ts.bootable</name>
testsuite/integration/clustering/pom.xml:2171:                    <name>ts.bootable.ee9</name>
testsuite/integration/clustering/src/test/java/org/jboss/as/test/clustering/single/web/NonHaWebSessionPersistenceTestCase.java:113:            if (Boolean.getBoolean("ts.bootable") || Boolean.getBoolean("ts.bootable.ee9")) {
Binary file testsuite/integration/basic/target/test-classes/org/jboss/as/test/integration/hibernate/envers/Hibernate4NativeAPIEnversTestCase.class matches
Binary file testsuite/integration/basic/target/test-classes/org/jboss/as/test/integration/hibernate/HibernateNativeAPITransactionTestCase.class matches
Binary file testsuite/integration/basic/target/test-classes/org/jboss/as/test/integration/hibernate/naturalid/HibernateNativeAPINaturalIdTestCase.class matches
Binary file testsuite/integration/basic/target/test-classes/org/jboss/as/test/integration/hibernate/Hibernate4NativeAPIProviderTestCase.class matches
Binary file testsuite/integration/basic/target/test-classes/org/jboss/as/test/integration/hibernate/secondlevelcache/HibernateSecondLevelCacheTestCase.class matches
Binary file testsuite/integration/basic/target/test-classes/org/jboss/as/test/integration/hibernate/Hibernate2LCacheStatsTestCase.class matches
Binary file testsuite/integration/basic/target/test-classes/org/jboss/as/test/integration/jpa/hibernate/entitytest/EntityTestCase.class matches
Binary file testsuite/integration/basic/target/test-classes/org/jboss/as/test/integration/jpa/hibernate/sessionfactorytest/SessionFactoryTestCase.class matches
testsuite/integration/basic/pom.xml:3100:                    <name>ts.bootable</name>
testsuite/integration/basic/pom.xml:3248:                    <name>ts.bootable.ee9</name>
testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/hibernate/envers/Hibernate4NativeAPIEnversTestCase.java:83:        assumeTrue(System.getProperty("ts.ee9") == null && System.getProperty("ts.bootable.ee9") == null);
testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/hibernate/naturalid/HibernateNativeAPINaturalIdTestCase.java:98:        assumeTrue(System.getProperty("ts.ee9") == null && System.getProperty("ts.bootable.ee9") == null);
testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/hibernate/Hibernate2LCacheStatsTestCase.java:95:        assumeTrue(System.getProperty("ts.ee9") == null && System.getProperty("ts.bootable.ee9") == null);
testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/hibernate/secondlevelcache/HibernateSecondLevelCacheTestCase.java:89:        assumeTrue(System.getProperty("ts.ee9") == null && System.getProperty("ts.bootable.ee9") == null);
testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/hibernate/HibernateNativeAPITransactionTestCase.java:84:        assumeTrue(System.getProperty("ts.ee9") == null && System.getProperty("ts.bootable.ee9") == null);
testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/hibernate/Hibernate4NativeAPIProviderTestCase.java:84:        assumeTrue(System.getProperty("ts.ee9") == null && System.getProperty("ts.bootable.ee9") == null);
testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/jpa/hibernate/entitytest/EntityTestCase.java:78:        assumeTrue(System.getProperty("ts.ee9") == null && System.getProperty("ts.bootable.ee9") == null);
testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/jpa/hibernate/sessionfactorytest/SessionFactoryTestCase.java:61:        assumeTrue(System.getProperty("ts.ee9") == null && System.getProperty("ts.bootable.ee9") == null);
testsuite/integration/pom.xml:279:                    <name>ts.bootable</name>
testsuite/integration/pom.xml:299:                    <name>ts.bootable.ee9</name>
testsuite/integration/elytron/pom.xml:768:                    <name>ts.bootable</name>
testsuite/integration/elytron/src/test/java/org/wildfly/test/integration/elytron/util/WelcomeContent.java:24:    private final boolean layersTest = Boolean.getBoolean("ts.layers") || Boolean.getBoolean("ts.bootable");
testsuite/integration/elytron/src/test/java/org/wildfly/test/integration/elytron/securityapi/SecurityAPITestCase.java:66:    private final boolean ejbSupported = !Boolean.getBoolean("ts.layers") && !Boolean.getBoolean("ts.bootable");
testsuite/integration/elytron/src/test/java/org/wildfly/test/integration/elytron/jaspi/JaspiTestBase.java:41:    final boolean ejbSupported = !Boolean.getBoolean("ts.layers") && !Boolean.getBoolean("ts.bootable");
testsuite/integration/elytron/src/test/java/org/wildfly/test/integration/elytron/realm/FilesystemRealmEncryptedTestCase.java:66:        Assume.assumeTrue("WFLY-16019", System.getProperty("ts.bootable") == null);
testsuite/integration/microprofile-tck/jwt/pom.xml:223:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/jwt/pom.xml:228:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/jwt/pom.xml:236:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/jwt/pom.xml:242:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/opentracing/pom.xml:215:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/opentracing/pom.xml:220:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/opentracing/pom.xml:228:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/opentracing/pom.xml:234:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/metrics/pom.xml:129:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/metrics/pom.xml:134:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/metrics/pom.xml:142:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/metrics/pom.xml:148:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/rest-client/pom.xml:511:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/rest-client/pom.xml:516:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/rest-client/pom.xml:551:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/rest-client/pom.xml:557:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/config/pom.xml:141:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/config/pom.xml:146:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/config/pom.xml:154:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/config/pom.xml:160:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/reactive-streams-operators/pom.xml:128:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/reactive-streams-operators/pom.xml:135:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/reactive-streams-operators/pom.xml:144:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/reactive-streams-operators/pom.xml:152:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/health/pom.xml:116:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/health/pom.xml:121:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/health/pom.xml:129:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/health/pom.xml:135:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/pom.xml:55:        <ts.bootable-jar-microprofile-tck-packaging.phase>none</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/pom.xml:158:                        <phase>${ts.bootable-jar-microprofile-tck-packaging.phase}</phase>
testsuite/integration/microprofile-tck/pom.xml:393:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/pom.xml:434:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/openapi/pom.xml:162:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/openapi/pom.xml:167:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/openapi/pom.xml:175:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/openapi/pom.xml:181:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/fault-tolerance/pom.xml:135:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/fault-tolerance/pom.xml:140:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/fault-tolerance/pom.xml:148:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/fault-tolerance/pom.xml:154:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/reactive-messaging/pom.xml:136:                    <name>ts.bootable</name>
testsuite/integration/microprofile-tck/reactive-messaging/pom.xml:143:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile-tck/reactive-messaging/pom.xml:151:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile-tck/reactive-messaging/pom.xml:159:                <ts.bootable-jar-microprofile-tck-packaging.phase>process-test-resources</ts.bootable-jar-microprofile-tck-packaging.phase>
testsuite/integration/microprofile/pom.xml:768:                    <name>ts.bootable</name>
testsuite/integration/microprofile/pom.xml:859:                    <name>ts.bootable.ee9</name>
testsuite/integration/microprofile/src/test/java/org/wildfly/test/integration/microprofile/config/smallrye/converter/SetupTask.java:63:        if (Boolean.getBoolean("ts.ee9") || Boolean.getBoolean("ts.bootable.ee9")) {
testsuite/integration/elytron-oidc-client/pom.xml:535:                    <name>ts.bootable</name>
testsuite/integration/elytron-oidc-client/pom.xml:626:                    <name>ts.bootable.ee9</name>
Binary file testsuite/shared/target/classes/org/jboss/as/test/shared/util/AssumeTestGroupUtil.class matches
testsuite/shared/src/main/java/org/jboss/as/test/shared/util/AssumeTestGroupUtil.java:106:        return System.getProperty("ts.ee9") != null || System.getProperty("ts.bootable.ee9") != null;
testsuite/preview/source-transform/smoke/pom.xml:830:                    <name>ts.bootable</name>
testsuite/preview/source-transform/smoke/pom.xml:943:                    <name>ts.bootable.ee9</name>
testsuite/preview/source-transform/web/pom.xml:363:                    <name>ts.bootable.ee9</name>
testsuite/preview/basic/pom.xml:518:                    <name>ts.bootable.ee9</name>
testsuite/preview/pom.xml:162:                    <name>ts.bootable.ee9</name>
testsuite/preview/pom.xml:420:                    <name>ts.bootable.ee9</name>
testsuite/domain/src/test/java/org/jboss/as/test/integration/domain/util/EENamespaceTransformer.java:40:            || System.getProperty("ts.bootable.ee9") != null;
testsuite/domain/src/test/java/org/jboss/as/test/integration/domain/HostExcludesTestCase.java:208:            if (System.getProperty("ts.ee9") != null || System.getProperty("ts.bootable.ee9") != null) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment