Skip to content

Commit

Permalink
(#1469) Reintroduce test commented out by #1170.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrcheli committed May 5, 2023
1 parent 0886f7c commit ef85a21
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 ef85a21

Please sign in to comment.