Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for timeoutSuite (0.26 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java

                });
    
                if (OS.current().equals(OS.WINDOWS) && System.getProperty("tests.timeoutSuite") == null) {
                    // override the suite timeout to 30 mins for windows, because it has the most inefficient filesystem known to man
                    test.systemProperty("tests.timeoutSuite", "2400000!");
                }
    
                /*
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 22:14:49 GMT 2021
    - 10.4K bytes
    - Click Count (0)
  2. TESTING.asciidoc

    ./gradlew test -verbose
    ----------------------
    
    Change the default suite timeout to 5 seconds for all
    tests (note the exclamation mark).
    
    ---------------------------------------
    ./gradlew test -Dtests.timeoutSuite=5000! ...
    ---------------------------------------
    
    Change the logging level of ES (not Gradle)
    
    --------------------------------
    ./gradlew test -Dtests.es.logger.level=DEBUG
    --------------------------------
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
Back to Top