[compiler-rt] r349255 - Fix typo in test cases as well.
Peter Collingbourne via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 14 23:08:04 PST 2018
Author: pcc
Date: Fri Dec 14 23:08:04 2018
New Revision: 349255
URL: http://llvm.org/viewvc/llvm-project?rev=349255&view=rev
Log:
Fix typo in test cases as well.
Modified:
compiler-rt/trunk/test/hwasan/TestCases/deep-recursion.c
compiler-rt/trunk/test/hwasan/TestCases/stack-history-length.c
compiler-rt/trunk/test/hwasan/TestCases/stack-uar.c
Modified: compiler-rt/trunk/test/hwasan/TestCases/deep-recursion.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/hwasan/TestCases/deep-recursion.c?rev=349255&r1=349254&r2=349255&view=diff
==============================================================================
--- compiler-rt/trunk/test/hwasan/TestCases/deep-recursion.c (original)
+++ compiler-rt/trunk/test/hwasan/TestCases/deep-recursion.c Fri Dec 14 23:08:04 2018
@@ -30,25 +30,25 @@ __attribute__((noinline)) void FUNC10()
int main() { FUNC10(); }
-// D1: Previosly allocated frames
+// D1: Previously allocated frames
// D1: in OOB
// D1-NOT: in FUNC
// D1: Memory tags around the buggy address
-// D2: Previosly allocated frames
+// D2: Previously allocated frames
// D2: in OOB
// D2: in FUNC1
// D2-NOT: in FUNC
// D2: Memory tags around the buggy address
-// D3: Previosly allocated frames
+// D3: Previously allocated frames
// D3: in OOB
// D3: in FUNC1
// D3: in FUNC2
// D3-NOT: in FUNC
// D3: Memory tags around the buggy address
-// D5: Previosly allocated frames
+// D5: Previously allocated frames
// D5: in OOB
// D5: in FUNC1
// D5: in FUNC2
@@ -57,7 +57,7 @@ int main() { FUNC10(); }
// D5-NOT: in FUNC
// D5: Memory tags around the buggy address
-// DEFAULT: Previosly allocated frames
+// DEFAULT: Previously allocated frames
// DEFAULT: in OOB
// DEFAULT: in FUNC1
// DEFAULT: in FUNC2
Modified: compiler-rt/trunk/test/hwasan/TestCases/stack-history-length.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/hwasan/TestCases/stack-history-length.c?rev=349255&r1=349254&r2=349255&view=diff
==============================================================================
--- compiler-rt/trunk/test/hwasan/TestCases/stack-history-length.c (original)
+++ compiler-rt/trunk/test/hwasan/TestCases/stack-history-length.c Fri Dec 14 23:08:04 2018
@@ -25,12 +25,12 @@ int main(int argc, char **argv) {
OOB();
}
-// YES: Previosly allocated frames
+// YES: Previously allocated frames
// YES: OOB
// YES: FUNC
// YES: FUNC0
-// NO: Previosly allocated frames
+// NO: Previously allocated frames
// NO: OOB
// NO: FUNC
// NO-NOT: FUNC0
Modified: compiler-rt/trunk/test/hwasan/TestCases/stack-uar.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/hwasan/TestCases/stack-uar.c?rev=349255&r1=349254&r2=349255&view=diff
==============================================================================
--- compiler-rt/trunk/test/hwasan/TestCases/stack-uar.c (original)
+++ compiler-rt/trunk/test/hwasan/TestCases/stack-uar.c Fri Dec 14 23:08:04 2018
@@ -27,7 +27,7 @@ int main() {
// CHECK: READ of size 1 at
// CHECK: #0 {{.*}} in main{{.*}}stack-uar.c:[[@LINE-2]]
// CHECK: is located in stack of thread
- // CHECK: Previosly allocated frames:
+ // CHECK: Previously allocated frames:
// CHECK: Unrelated3
// CHECK: 16 CCC
// CHECK: Unrelated2
More information about the llvm-commits
mailing list