Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for failTest (0.19 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

            filter.setCommandLineIncludePatterns(testNamePattern);
            return this;
        }
    
        @Internal
        boolean getFailFast() {
            return failFast;
        }
    
        void setFailFast(boolean failFast) {
            this.failFast = failFast;
        }
    
        /**
         * The reports that this task potentially produces.
         *
         * @return The reports that this task potentially produces
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

         */
        @Option(option = "fail-fast", description = "Stops test execution after the first failed test.")
        @Override
        public void setFailFast(boolean failFast) {
            super.setFailFast(failFast);
        }
    
        /**
         * Indicates if this task will fail on the first failed test
         *
         * @return whether this task will fail on the first failed test
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/testflag.go

    	cf.String("blockprofilerate", "", "")
    	cf.Int("count", 0, "")
    	cf.String("cpu", "", "")
    	cf.StringVar(&testCPUProfile, "cpuprofile", "", "")
    	cf.BoolVar(&testFailFast, "failfast", false, "")
    	cf.StringVar(&testFuzz, "fuzz", "", "")
    	cf.Bool("fullpath", false, "")
    	cf.StringVar(&testList, "list", "", "")
    	cf.StringVar(&testMemProfile, "memprofile", "", "")
    	cf.String("memprofilerate", "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top