From 9f23680a16b7d69d6cd79cd0d6128939e4a5a3b3 Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Tue, 6 Oct 2015 19:23:22 +0000 Subject: [PATCH] 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 --- lldb/test/lldbtest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index de9eb00dfd3c..ad20f698d7f8 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -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():