Lines Matching refs:testRoot
335 testArchiveFile := filepath.Join(testRoot(ctx),
337 g.testResultFile = buildGoTest(ctx, testRoot(ctx), testArchiveFile,
400 testArchiveFile = filepath.Join(testRoot(ctx), name+".a")
436 deps = buildGoTest(ctx, testRoot(ctx), testArchiveFile,
536 func buildGoTest(ctx blueprint.ModuleContext, testRoot, testPkgArchive, argument
546 mainFile := filepath.Join(testRoot, "test.go")
547 testArchive := filepath.Join(testRoot, "test.a")
548 testFile := filepath.Join(testRoot, "test")
549 testPassed := filepath.Join(testRoot, "test.passed")
551 buildGoPackage(ctx, testRoot, pkgPath, testPkgArchive,
565 libDirFlags := []string{"-L " + testRoot}
583 "incFlags": "-I " + testRoot,
771 func testRoot(ctx blueprint.ModuleContext) string { func