summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorspaette <spaette@users.noreply.github.com>2024-09-11 13:05:04 -0500
committerDylan Baker <dylan@pnwbakers.com>2024-09-11 15:51:04 -0700
commit4179996fefd272cc0c893b88ad17c010fa037768 (patch)
treea5f7f8ff03bb5b6d39556331d4c2e163f7718c14 /test cases
parent3aedec5b34c586b9c3a16be17d2fda353bf5fff1 (diff)
downloadmeson-4179996fefd272cc0c893b88ad17c010fa037768.tar.gz
Fix typos
Diffstat (limited to 'test cases')
-rw-r--r--test cases/format/5 transform/genexpected.cmd2
-rw-r--r--test cases/rust/5 polyglot static/meson.build2
-rw-r--r--test cases/rust/9 unit tests/test3.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/test cases/format/5 transform/genexpected.cmd b/test cases/format/5 transform/genexpected.cmd
index de3699dde..c273a99c5 100644
--- a/test cases/format/5 transform/genexpected.cmd
+++ b/test cases/format/5 transform/genexpected.cmd
@@ -1,6 +1,6 @@
@echo off
REM This script generates the expected files
-REM Please double-check the contents of those files before commiting them!!!
+REM Please double-check the contents of those files before committing them!!!
python ../../../meson.py format -o default.expected.meson source.meson
python ../../../meson.py format -c muon.ini -o muon.expected.meson source.meson
diff --git a/test cases/rust/5 polyglot static/meson.build b/test cases/rust/5 polyglot static/meson.build
index 54f383cd3..180f86ecb 100644
--- a/test cases/rust/5 polyglot static/meson.build
+++ b/test cases/rust/5 polyglot static/meson.build
@@ -19,7 +19,7 @@ e = executable('prog', 'prog.c',
test('polyglottest', e)
# Create a version that has overflow-checks on, then run a test to ensure that
-# the overflow-checks is larger than the other version by some ammount
+# the overflow-checks is larger than the other version by some amount
r2 = static_library('stuff2', 'stuff.rs', rust_crate_type : 'staticlib', rust_args : ['-C', 'overflow-checks=on'])
l2 = static_library('clib2', 'clib.c')
e2 = executable('prog2', 'prog.c', link_with : [r2, l2])
diff --git a/test cases/rust/9 unit tests/test3.rs b/test cases/rust/9 unit tests/test3.rs
index 6d538a059..72349a63c 100644
--- a/test cases/rust/9 unit tests/test3.rs
+++ b/test cases/rust/9 unit tests/test3.rs
@@ -8,7 +8,7 @@ mod tests {
use super::*;
- // This is an intentinally broken test that should be turned off by extra rust arguments
+ // This is an intentionally broken test that should be turned off by extra rust arguments
#[cfg(not(broken = "false"))]
#[test]
fn test_broken() {