aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Rewriter
diff options
context:
space:
mode:
authorZarko Todorovski <zarko@ca.ibm.com>2021-11-24 09:52:01 -0500
committerZarko Todorovski <zarko@ca.ibm.com>2021-11-24 14:03:49 -0500
commitc79345fb7b149d9c952f8506c9e6c6317a5b4cd8 (patch)
treea4a62426da01ada6c17ba1de03899806846d108a /clang/test/Rewriter
parentfb46e64a013a2c7457db3312da07db1b25ad5219 (diff)
downloadllvm-c79345fb7b149d9c952f8506c9e6c6317a5b4cd8.zip
llvm-c79345fb7b149d9c952f8506c9e6c6317a5b4cd8.tar.gz
llvm-c79345fb7b149d9c952f8506c9e6c6317a5b4cd8.tar.bz2
[NFC][Clang][test] Inclusive language: Remove and rephrase uses of sanity test/check in clang/test
Part of work to use more inclusive terms in clang/llvm.
Diffstat (limited to 'clang/test/Rewriter')
-rw-r--r--clang/test/Rewriter/instancetype-test.mm2
-rw-r--r--clang/test/Rewriter/rewrite-foreach-in-block.mm4
2 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Rewriter/instancetype-test.mm b/clang/test/Rewriter/instancetype-test.mm
index 4a7f961..1c4a923 100644
--- a/clang/test/Rewriter/instancetype-test.mm
+++ b/clang/test/Rewriter/instancetype-test.mm
@@ -37,7 +37,7 @@ void *sel_registerName(const char *);
- (void)methodOnSubclass2;
@end
-// Sanity check: the basic initialization pattern.
+// Check the basic initialization pattern.
void test_instancetype_alloc_init_simple() {
Root *r1 = [[Root alloc] init];
Subclass1 *sc1 = [[Subclass1 alloc] init];
diff --git a/clang/test/Rewriter/rewrite-foreach-in-block.mm b/clang/test/Rewriter/rewrite-foreach-in-block.mm
index 14d9d3a..8506701 100644
--- a/clang/test/Rewriter/rewrite-foreach-in-block.mm
+++ b/clang/test/Rewriter/rewrite-foreach-in-block.mm
@@ -20,12 +20,12 @@ typedef void (^CoreDAVCompletionBlock)(void);
- (void)M {
I* ace;
self.c = ^() {
- // sanity test for the changes.
+ // Basic correctness check for the changes.
[ace ARR];
for (I *privilege in [ace ARR]) { }
};
self.c = ^() {
- // sanity test for the changes.
+ // Basic correctness test for the changes.
[ace ARR];
};
}