Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,195 for doOutput (0.29 sec)

  1. cmd/prune-junit-xml/prunexml_test.go

    		</testcase>
    	</testsuite>
    </testsuites>`
    	suites, _ := fetchXML(strings.NewReader(sourceXML))
    	pruneXML(suites, 32)
    	var output bytes.Buffer
    	writer := bufio.NewWriter(&output)
    	_ = streamXML(writer, suites)
    	_ = writer.Flush()
    	assert.Equal(t, outputXML, string(output.Bytes()), "xml was not pruned correctly")
    }
    
    func TestPruneTESTS(t *testing.T) {
    	sourceXML := `<?xml version="1.0" encoding="UTF-8"?>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

                assert result.groupedOutput.task(':1:log').output == "Error from 1\nOutput from 1\nDone with 1\nDone with 1"
                assert result.groupedOutput.task(':2:log').output == "Error from 2\nOutput from 2\nDone with 2\nDone with 2"
                assert result.groupedOutput.task(':3:log').output == "Error from 3\nOutput from 3\nDone with 3\nDone with 3"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. .gitignore

    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    .\#*
    
    # Vim-related files
    [._]*.s[a-w][a-z]
    [._]s[a-w][a-z]
    *.un~
    Session.vim
    .netrwhist
    
    # cscope-related files
    cscope.*
    
    # Go test binaries
    *.test
    /hack/.test-cmd-auth
    
    # JUnit test output from ginkgo e2e tests
    /junit*.xml
    
    # Mercurial files
    **/.hg
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/runtime/ehooks_test.go

    				t.Fatalf("failed%s mode %s: wanted %q\noutput:\n%s", bt,
    					s.mode, s.expected, outs)
    			}
    			for _, need := range s.musthave {
    				if !strings.Contains(outs, need) {
    					t.Fatalf("failed mode %s: output does not contain %q\noutput:\n%s",
    						s.mode, need, outs)
    				}
    			}
    			if s.expected == "" && s.musthave == nil && outs != "" {
    				t.Errorf("failed mode %s: wanted no output\noutput:\n%s", s.mode, outs)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. hack/verify-e2e-test-ownership.sh

    # input
    spec_summaries="${KUBE_ROOT}/_output/specsummaries.json"
    # output
    results_json="${tmpdir}/results.json"
    summary_json="${tmpdir}/summary.json"
    failures_json="${tmpdir}/failures.json"
    
    # rebuild dependencies if necessary
    function ensure_dependencies() {
      local -r ginkgo="${KUBE_ROOT}/_output/bin/ginkgo"
      local -r e2e_test="${KUBE_ROOT}/_output/bin/e2e.test"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  6. build/README.md

    * [`build/copy-output.sh`](copy-output.sh): This will copy the contents of `_output/dockerized/bin` from the Docker container to the local `_output/dockerized/bin`. It will also copy out specific file patterns that are generated as part of the build process. This is run automatically as part of `build/run.sh`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/inst_test.go

    	}
    
    	// Actually run the test and make sure output is correct.
    	cmd = testenv.Command(t, gotool, "run", filepath.Join("testdata", filename))
    	if output, err = cmd.CombinedOutput(); err != nil {
    		t.Fatalf("Failed: %v:\nOut: %s\n", err, output)
    	}
    	out, err := os.ReadFile(filepath.Join("testdata", outname))
    	if err != nil {
    		t.Fatalf("Could not find %s\n", outname)
    	}
    	if string(out) != string(output) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. hack/verify-golangci-lint.sh

         ;;
      esac
    done
    
    # Below the output of golangci-lint is going to be piped into sed to add
    # a prefix to each output line. This helps make the output more visible
    # in the Prow log viewer ("error" is a key word there) and ensures that
    # only those lines get included as failure message in a JUnit file
    # by "make verify".
    #
    # The downside is that the automatic detection whether to colorize output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue21317.go

    		"7:9: declared and not used: n",
    		"7:12: declared and not used: err",
    	}
    	outStr := string(out)
    	for _, want := range wantErrs {
    		if !strings.Contains(outStr, want) {
    			log.Fatalf("failed to match %q\noutput: %q", want, outStr)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement_test.go

    			if err != nil {
    				t.Fatalf("Failed to create path element: %v", err)
    			}
    			output, err := PathElementString(pe)
    			if err != nil {
    				t.Fatalf("Failed to create string from path element: %v", err)
    			}
    			if test != output {
    				t.Fatalf("Expected round-trip:\ninput: %v\noutput: %v", test, output)
    			}
    		})
    	}
    }
    
    func TestPathElementIgnoreUnknown(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top