df39c4fbbf03777a9ae32cec995735b.png
    f5d3f3cc063e30a63c528e478425275.png
    问:看看ENV, 是不是交叉编译后忘记设置回环境变量了?
    go 1.8 版本有workspace
    go 1.8 版本以下用的是moudle

    image.png

    1. package util
    2. import (
    3. "log"
    4. "testing"
    5. )
    6. func TestPrettyPrint(t *testing.T) {
    7. type args struct {
    8. arr [][]string
    9. }
    10. tests := []struct {
    11. name string
    12. args args
    13. }{
    14. {
    15. name: "normal",
    16. args: args{
    17. arr: [][]string{
    18. {"te", "test", "sdf"},
    19. {"te11232", "test123123", "1232123"},
    20. },
    21. },
    22. },
    23. }
    24. for _, tt := range tests {
    25. t.Run(tt.name, func(t *testing.T) {
    26. log.Panic(tt.args.arr)
    27. })
    28. }
    29. log.Panic("---------------")
    30. }
    1. package util
    2. import (
    3. "log"
    4. "testing"
    5. )
    6. func TestFile(t *testing.T) {
    7. log.Panic("---------------测试")
    8. }