mirror of
https://github.com/golang/go
synced 2024-11-06 08:26:12 -07:00
56e4b0b3a2
Updates #30228 Change-Id: I91a763d94de935d9102d927b5cefee564bbf049b Reviewed-on: https://go-review.googlesource.com/c/163208 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
42 lines
862 B
Go
42 lines
862 B
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build ignore
|
|
|
|
// Cleaner removes anything from /data/local/tmp/goroot not on a builtin list.
|
|
// Used by androidtest.bash.
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
func main() {
|
|
const goroot = "/data/local/tmp/goroot"
|
|
expect := make(map[string]bool)
|
|
for _, f := range strings.Split(files, "\n") {
|
|
expect[filepath.Join(goroot, f)] = true
|
|
}
|
|
|
|
err := filepath.Walk(goroot, func(path string, info os.FileInfo, err error) error {
|
|
if expect[path] {
|
|
return nil
|
|
}
|
|
log.Printf("removing %s", path)
|
|
if err := os.RemoveAll(path); err != nil {
|
|
return err
|
|
}
|
|
if info.IsDir() {
|
|
return filepath.SkipDir
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|