buildtools/gcc/libgo/go/time/export_android_test.go

13 lines
318 B
Go
Raw Normal View History

2022-07-15 14:14:32 +02:00
// Copyright 2016 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.
package time
func ForceAndroidTzdataForTest(tzdata bool) {
2022-07-15 14:28:41 +02:00
forceZipFileForTesting(false)
2022-07-15 14:14:32 +02:00
if tzdata {
2022-07-15 14:28:41 +02:00
zoneSources = zoneSources[:len(zoneSources)-1]
2022-07-15 14:14:32 +02:00
}
}