Skip to content

Commit

Permalink
Pipe forwarding
Browse files Browse the repository at this point in the history
Signed-off-by: Lazar Cvetković <[email protected]>
  • Loading branch information
cvetkovic committed Nov 14, 2024
1 parent ed7ff05 commit ba61d64
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/generator/specification_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,9 @@ func checkDistribution(data [][]float64, nonScaledDuration []float64, distributi
args := []string{"specification_statistical_test.py", dist, inputFile, fmt.Sprintf("%f", nonScaledDuration[min])}
statisticalTest := exec.Command("python3", args...)

statisticalTest.Stdout = os.Stdout
statisticalTest.Stderr = os.Stderr

// CALLING THE TESTING SCRIPT AND PROCESSING ITS RESULTS
// NOTE: the script generates a histogram in PNG format that can be used as a sanity-check
if err := statisticalTest.Wait(); err != nil {
Expand Down

0 comments on commit ba61d64

Please sign in to comment.