summaryrefslogtreecommitdiffstats
path: root/testing/framework
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2021-04-13 17:34:35 (GMT)
committerMats Wichmann <mats@linux.com>2021-04-13 17:34:35 (GMT)
commita71d917a5d8da43f0d250d7fcac1a9cce3a01f2e (patch)
treef67b257d1bb60a196e1732ece5e0f46fff17a94c /testing/framework
parent5f97909ef9d17de0f895650684046277bc1a5a88 (diff)
downloadSCons-a71d917a5d8da43f0d250d7fcac1a9cce3a01f2e.zip
SCons-a71d917a5d8da43f0d250d7fcac1a9cce3a01f2e.tar.gz
SCons-a71d917a5d8da43f0d250d7fcac1a9cce3a01f2e.tar.bz2
Fix sider warning typo and docstring for skip_if_not_msvc
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'testing/framework')
-rw-r--r--testing/framework/TestSCons.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py
index 01c1b40..5cd9db9 100644
--- a/testing/framework/TestSCons.py
+++ b/testing/framework/TestSCons.py
@@ -1175,7 +1175,7 @@ SConscript(sconscript)
return 'COVERAGE_PROCESS_START' in os.environ or 'COVERAGE_FILE' in os.environ
def skip_if_not_msvc(self, check_platform=True):
- """ Check whether MSVC is avaliable.
+ """ Skip test if MSVC is not available.
Check whether we are on a Windows platform and skip the test if
not. This check can be omitted by setting check_platform to False.