summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-11-24 09:28:00 -0500
committerEli Schwartz <eschwartz93@gmail.com>2022-11-24 15:17:23 -0500
commite85138fcc8373f925709124f8586a6feecf968d1 (patch)
treeb5051f163c9f3e2bf9e8e752e6d0a8c6e071a936 /test cases
parent9d1b59fa7ff1a1a31599a04a02c48c6b41026c2c (diff)
downloadmeson-e85138fcc8373f925709124f8586a6feecf968d1.tar.gz
Fix various spelling errors
Found with codespell.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/common/62 string arithmetic/meson.build4
-rw-r--r--test cases/failing/40 custom target plainname many inputs/test.json2
-rw-r--r--test cases/unit/102 python without pkgconfig/meson.build2
3 files changed, 4 insertions, 4 deletions
diff --git a/test cases/common/62 string arithmetic/meson.build b/test cases/common/62 string arithmetic/meson.build
index e5f977385..acfac0b47 100644
--- a/test cases/common/62 string arithmetic/meson.build
+++ b/test cases/common/62 string arithmetic/meson.build
@@ -22,7 +22,7 @@ assert(x == 'the quick\n brown\nfox')
# ------------------------------------------------------------------------------
# multi-line format strings
# ------------------------------------------------------------------------------
-y_actual = f'''This is a multi-line comment with string substition:
+y_actual = f'''This is a multi-line comment with string substitution:
"@sub1@@sub2@@sub3@@sub4@"
And I can even substitute the entry multiple times!
@@ -32,7 +32,7 @@ And I can even substitute the entry multiple times!
@sub3@
'''
-y_expect = '''This is a multi-line comment with string substition:
+y_expect = '''This is a multi-line comment with string substitution:
"the quick
brown
fox"
diff --git a/test cases/failing/40 custom target plainname many inputs/test.json b/test cases/failing/40 custom target plainname many inputs/test.json
index 05f4d4936..f5c3abfa0 100644
--- a/test cases/failing/40 custom target plainname many inputs/test.json
+++ b/test cases/failing/40 custom target plainname many inputs/test.json
@@ -1,7 +1,7 @@
{
"stdout": [
{
- "line": "test cases/failing/40 custom target plainname many inputs/meson.build:5:0: ERROR: custom_target: output cannot containe \"@PLAINNAME@\" or \"@BASENAME@\" when there is more than one input (we can't know which to use)"
+ "line": "test cases/failing/40 custom target plainname many inputs/meson.build:5:0: ERROR: custom_target: output cannot contain \"@PLAINNAME@\" or \"@BASENAME@\" when there is more than one input (we can't know which to use)"
}
]
}
diff --git a/test cases/unit/102 python without pkgconfig/meson.build b/test cases/unit/102 python without pkgconfig/meson.build
index b3a0c42fb..014a61751 100644
--- a/test cases/unit/102 python without pkgconfig/meson.build
+++ b/test cases/unit/102 python without pkgconfig/meson.build
@@ -1,4 +1,4 @@
-project('python wihtout pkgconfig', 'c')
+project('python without pkgconfig', 'c')
# This unit test is ran with PKG_CONFIG=notfound
import('python').find_installation().dependency()