16 lines
214 B
Go
16 lines
214 B
Go
package patching
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestBuildRosetta(t *testing.T) {
|
|
rp, lp, err := BuildRosetta()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
fmt.Println("exe path:", rp)
|
|
fmt.Println("lib path:", lp)
|
|
}
|