aboutsummaryrefslogtreecommitdiff
path: root/test cases/common
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common')
-rw-r--r--test cases/common/102 extract same name/meson.build2
-rw-r--r--test cases/common/151 duplicate source names/meson.build2
-rw-r--r--test cases/common/216 custom target input extracted objects/meson.build2
-rw-r--r--test cases/common/239 includedir violation/subprojects/sub/include/placeholder.h2
-rw-r--r--test cases/common/51 run target/helloprinter.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/test cases/common/102 extract same name/meson.build b/test cases/common/102 extract same name/meson.build
index 08daa5b..86e68b9 100644
--- a/test cases/common/102 extract same name/meson.build
+++ b/test cases/common/102 extract same name/meson.build
@@ -9,7 +9,7 @@ if meson.backend() == 'xcode'
#
# No-one has reverse engineered the naming scheme so we would access them.
# IF you feel up to the challenge, patches welcome.
- error('MESON_SKIP_TEST, Xcode can not extract objs when they would have the same filename.')
+ error('MESON_SKIP_TEST, Xcode cannot extract objs when they would have the same filename.')
endif
lib = library('somelib', ['lib.c', 'src/lib.c'])
diff --git a/test cases/common/151 duplicate source names/meson.build b/test cases/common/151 duplicate source names/meson.build
index 635aa8c..74fc0ff 100644
--- a/test cases/common/151 duplicate source names/meson.build
+++ b/test cases/common/151 duplicate source names/meson.build
@@ -9,7 +9,7 @@ if meson.backend() == 'xcode'
#
# No-one has reverse engineered the naming scheme so we would access them.
# IF you feel up to the challenge, patches welcome.
- error('MESON_SKIP_TEST, Xcode can not extract objs when they would have the same filename.')
+ error('MESON_SKIP_TEST, Xcode cannot extract objs when they would have the same filename.')
endif
sources = []
diff --git a/test cases/common/216 custom target input extracted objects/meson.build b/test cases/common/216 custom target input extracted objects/meson.build
index 654b76d..136e154 100644
--- a/test cases/common/216 custom target input extracted objects/meson.build
+++ b/test cases/common/216 custom target input extracted objects/meson.build
@@ -1,7 +1,7 @@
project('custom target input extracted objects', 'c')
if meson.backend() == 'xcode'
- error('MESON_SKIP_TEST: sometimes Xcode puts object files in weird paths and we can not extract them.')
+ error('MESON_SKIP_TEST: sometimes Xcode puts object files in weird paths and we cannot extract them.')
endif
diff --git a/test cases/common/239 includedir violation/subprojects/sub/include/placeholder.h b/test cases/common/239 includedir violation/subprojects/sub/include/placeholder.h
index 196f917..22653bf 100644
--- a/test cases/common/239 includedir violation/subprojects/sub/include/placeholder.h
+++ b/test cases/common/239 includedir violation/subprojects/sub/include/placeholder.h
@@ -1,3 +1,3 @@
#pragma once
-// Git can not handle empty directories, so there must be something here.
+// Git cannot handle empty directories, so there must be something here.
diff --git a/test cases/common/51 run target/helloprinter.c b/test cases/common/51 run target/helloprinter.c
index 4a6e0ac..dbbe82f 100644
--- a/test cases/common/51 run target/helloprinter.c
+++ b/test cases/common/51 run target/helloprinter.c
@@ -2,7 +2,7 @@
int main(int argc, char **argv) {
if(argc != 2) {
- printf("I can not haz argument.\n");
+ printf("I cannot haz argument.\n");
return 1;
} else {
printf("I can haz argument: %s\n", argv[1]);