Skip to content

Commit

Permalink
(#1170) comment out test changes, to be reintroduced in #1469
Browse files Browse the repository at this point in the history
  • Loading branch information
jrcheli committed May 5, 2023
1 parent 4110ba1 commit 347c681
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test/integration/go/signals/signalHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ func genOpenCloseLoop(f_name string) {
}
}

func genConsoleOutput() {
for i :=1; i < LoopLimit; i++ {
fmt.Printf(" %d ", i)
if i % 6 == 0 {
fmt.Println("")
}
}
}
//func genConsoleOutput() {
// for i :=1; i < LoopLimit; i++ {
// fmt.Printf(" %d ", i)
// if i % 6 == 0 {
// fmt.Println("")
// }
// }
//}

func main() {

Expand Down Expand Up @@ -73,9 +73,9 @@ func main() {
genOpenCloseLoop(tmpfile.Name())
}()

go func() {
genConsoleOutput();
}()
// go func() {
// genConsoleOutput();
// }()

<-quit_channel
fmt.Println("Exiting")
Expand Down

0 comments on commit 347c681

Please sign in to comment.