1.PHONY : test
2test :
3	go test -v
4
5.PHONY : gdb
6gdb :
7	go test -c -s -N -l
8	gdb ./tests.test
9