mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-08 21:13:39 +00:00
main (test): integrate test corpus runner
This allows us to test a large corpus of external packages against the compiler.
This commit is contained in:
+8
-3
@@ -94,9 +94,14 @@ func Load(config *compileopts.Config, inputPkgs []string, clangHeaders string, t
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
wd, err := os.Getwd()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
var wd string
|
||||
if config.Options.Directory != "" {
|
||||
wd = config.Options.Directory
|
||||
} else {
|
||||
wd, err = os.Getwd()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
p := &Program{
|
||||
config: config,
|
||||
|
||||
Reference in New Issue
Block a user