Fixed tests not passing on Windows

This commit is contained in:
Julien Kauffmann 2017-01-24 09:09:02 -05:00
parent 5ed0fc31f7
commit 3968772673

View file

@ -11,8 +11,9 @@ import (
"io"
"io/ioutil"
"os"
"path"
path "path/filepath"
"reflect"
"runtime"
"sort"
"strings"
"testing"
@ -183,10 +184,16 @@ func initHcl() {
func initDirs(t *testing.T) (string, string, func()) {
var (
testDirs = []string{`a a`, `b`, `c\c`, `D_`}
testDirs []string
config = `improbable`
)
if runtime.GOOS == "windows" {
testDirs = []string{`a a`, `b`, `D_`}
} else {
testDirs = []string{`a a`, `b`, `c\c`, `D_`}
}
root, err := ioutil.TempDir("", "")
cleanup := true