summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2018-12-08 04:46:15 +0000
committerKamil Rytarowski <n54@gmx.com>2018-12-08 04:46:15 +0000
commite1f966508fc2987fd164908442316873b3da15a0 (patch)
treed535af4c1536736309788a9cc1544eecf039b941
parent3ac7a15163ec906d5819870379e82cfa768427ae (diff)
downloadbcm5719-llvm-e1f966508fc2987fd164908442316873b3da15a0.tar.gz
bcm5719-llvm-e1f966508fc2987fd164908442316873b3da15a0.zip
Fix a typo in the strtoi test
https://reviews.llvm.org/D54702 llvm-svn: 348683
-rw-r--r--compiler-rt/test/sanitizer_common/TestCases/NetBSD/strtoi.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/NetBSD/strtoi.cc b/compiler-rt/test/sanitizer_common/TestCases/NetBSD/strtoi.cc
index ab1953c1c12..4d0d8b3aebf 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/NetBSD/strtoi.cc
+++ b/compiler-rt/test/sanitizer_common/TestCases/NetBSD/strtoi.cc
@@ -34,10 +34,10 @@ int main(void) {
// CHECK: strtoi
// CHECK: strtoi: conversion of '100' to a number successful, using 100, p=0
// CHECK: strtoi: conversion of '100' to a number failed, using 10, p=0
- // CHECK: strtoi: conversion of '100xyz' to a number failed, using 10, p=0x78
+ // CHECK: strtoi: conversion of '100xyz' to a number failed, using 100, p=0x78
// CHECK: strtou: conversion of '100' to a number successful, using 100, p=0
// CHECK: strtou: conversion of '100' to a number failed, using 10, p=0
- // CHECK: strtou: conversion of '100xyz' to a number failed, using 10, p=0x78
+ // CHECK: strtou: conversion of '100xyz' to a number failed, using 100, p=0x78
return 0;
}
OpenPOWER on IntegriCloud