aboutsummaryrefslogtreecommitdiff
path: root/unittests/allplatformstests.py
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/allplatformstests.py')
-rw-r--r--unittests/allplatformstests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py
index 0581caf..a8ec787 100644
--- a/unittests/allplatformstests.py
+++ b/unittests/allplatformstests.py
@@ -679,7 +679,7 @@ class AllPlatformTests(BasePlatformTests):
with open(os.path.join(self.logdir, 'testlog-good.txt'), encoding='utf-8') as f:
exclude_suites_log = f.read()
self.assertNotIn('buggy', exclude_suites_log)
- # --suite overrides add_test_setup(xclude_suites)
+ # --suite overrides add_test_setup(exclude_suites)
self._run(self.mtest_command + ['--setup=good', '--suite', 'buggy'])
with open(os.path.join(self.logdir, 'testlog-good.txt'), encoding='utf-8') as f:
include_suites_log = f.read()
@@ -2228,7 +2228,7 @@ class AllPlatformTests(BasePlatformTests):
msg = ('''DEPRECATION: target prog links against shared module mymod, which is incorrect.
This will be an error in the future, so please use shared_library() for mymod instead.
If shared_module() was used for mymod because it has references to undefined symbols,
- use shared_libary() with `override_options: ['b_lundef=false']` instead.''')
+ use shared_library() with `override_options: ['b_lundef=false']` instead.''')
self.assertIn(msg, out)
def test_mixed_language_linker_check(self):