Bungled my last change in a tweak.

I took out a skip_test check that wasn't necessary, but
didn't fully yank it out.  Would break a normal go install.

llvm-svn: 249448
This commit is contained in:
Todd Fiala 2015-10-06 19:23:22 +00:00
parent b5fb88584a
commit 9f23680a16
1 changed files with 1 additions and 2 deletions

View File

@ -959,8 +959,7 @@ def skipUnlessGoInstalled(func):
"not meet minimum go version {}".format(
compiler_strict_version,
min_strict_version))
if not skip_test:
func(*args, **kwargs)
func(*args, **kwargs)
return wrapper
def getPlatform():