
File.Stat is left as a stub for now. Tests are a bit stubbed down because os.ReadDir, os.Symlink, and t.TempDir are not yet (fully) implemented. TODO: reimport tests from upstream as those materialize.
12 строки
270 Б
Go
12 строки
270 Б
Go
// 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 os
|
|
|
|
// Export for testing.
|
|
|
|
var (
|
|
FixLongPath = fixLongPath
|
|
CanUseLongPaths = canUseLongPaths
|
|
)
|