Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/tests/lib/libc s/diferent/different/
details: https://anonhg.NetBSD.org/src/rev/a7602afdd800
branches: trunk
changeset: 984970:a7602afdd800
user: andvar <andvar%NetBSD.org@localhost>
date: Mon Aug 02 17:41:07 2021 +0000
description:
s/diferent/different/
diffstat:
tests/lib/libc/locale/t_sprintf.c | 10 +++++-----
tests/lib/libc/locale/t_strfmon.c | 6 +++---
tests/lib/libc/locale/t_toupper.c | 8 ++++----
tests/lib/libc/string/t_strcoll.c | 6 +++---
4 files changed, 15 insertions(+), 15 deletions(-)
diffs (135 lines):
diff -r 8c11607f74de -r a7602afdd800 tests/lib/libc/locale/t_sprintf.c
--- a/tests/lib/libc/locale/t_sprintf.c Mon Aug 02 14:00:48 2021 +0000
+++ b/tests/lib/libc/locale/t_sprintf.c Mon Aug 02 17:41:07 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_sprintf.c,v 1.7 2017/12/01 01:08:35 kre Exp $ */
+/* $NetBSD: t_sprintf.c,v 1.8 2021/08/02 17:41:07 andvar Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2017\
The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_sprintf.c,v 1.7 2017/12/01 01:08:35 kre Exp $");
+__RCSID("$NetBSD: t_sprintf.c,v 1.8 2021/08/02 17:41:07 andvar Exp $");
#include <locale.h>
#include <math.h>
@@ -193,7 +193,7 @@
ATF_TC_HEAD(sprintf, tc)
{
atf_tc_set_md_var(tc, "descr",
- "Checks sprintf %%'d and %%'f under diferent locales");
+ "Checks sprintf %%'d and %%'f under different locales");
}
ATF_TC_BODY(sprintf, tc)
{
@@ -207,7 +207,7 @@
ATF_TC_HEAD(strto, tc)
{
atf_tc_set_md_var(tc, "descr",
- "Checks strtol and strtod under diferent locales");
+ "Checks strtol and strtod under different locales");
}
ATF_TC_BODY(strto, tc)
{
@@ -221,7 +221,7 @@
ATF_TC_HEAD(sscanf, tc)
{
atf_tc_set_md_var(tc, "descr",
- "Checks sscanf under diferent locales");
+ "Checks sscanf under different locales");
}
ATF_TC_BODY(sscanf, tc)
{
diff -r 8c11607f74de -r a7602afdd800 tests/lib/libc/locale/t_strfmon.c
--- a/tests/lib/libc/locale/t_strfmon.c Mon Aug 02 14:00:48 2021 +0000
+++ b/tests/lib/libc/locale/t_strfmon.c Mon Aug 02 17:41:07 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_strfmon.c,v 1.2 2017/12/07 22:23:14 kre Exp $ */
+/* $NetBSD: t_strfmon.c,v 1.3 2021/08/02 17:41:07 andvar Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: t_strfmon.c,v 1.2 2017/12/07 22:23:14 kre Exp $");
+__RCSID("$NetBSD: t_strfmon.c,v 1.3 2021/08/02 17:41:07 andvar Exp $");
#include <atf-c.h>
#include <locale.h>
@@ -41,7 +41,7 @@
ATF_TC_HEAD(strfmon, tc)
{
atf_tc_set_md_var(tc, "descr",
- "Checks strfmon_l under diferent locales");
+ "Checks strfmon_l under different locales");
}
ATF_TC_BODY(strfmon, tc)
diff -r 8c11607f74de -r a7602afdd800 tests/lib/libc/locale/t_toupper.c
--- a/tests/lib/libc/locale/t_toupper.c Mon Aug 02 14:00:48 2021 +0000
+++ b/tests/lib/libc/locale/t_toupper.c Mon Aug 02 17:41:07 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_toupper.c,v 1.1 2017/05/30 02:11:03 perseant Exp $ */
+/* $NetBSD: t_toupper.c,v 1.2 2021/08/02 17:41:07 andvar Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2017\
The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_toupper.c,v 1.1 2017/05/30 02:11:03 perseant Exp $");
+__RCSID("$NetBSD: t_toupper.c,v 1.2 2021/08/02 17:41:07 andvar Exp $");
#include <locale.h>
#include <stdio.h>
@@ -92,7 +92,7 @@
ATF_TC_HEAD(toupper, tc)
{
atf_tc_set_md_var(tc, "descr",
- "Checks toupper under diferent locales");
+ "Checks toupper under different locales");
}
ATF_TC_BODY(toupper, tc)
@@ -108,7 +108,7 @@
ATF_TC_HEAD(tolower, tc)
{
atf_tc_set_md_var(tc, "descr",
- "Checks tolower under diferent locales");
+ "Checks tolower under different locales");
}
ATF_TC_BODY(tolower, tc)
diff -r 8c11607f74de -r a7602afdd800 tests/lib/libc/string/t_strcoll.c
--- a/tests/lib/libc/string/t_strcoll.c Mon Aug 02 14:00:48 2021 +0000
+++ b/tests/lib/libc/string/t_strcoll.c Mon Aug 02 17:41:07 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_strcoll.c,v 1.1 2017/05/26 01:24:19 perseant Exp $ */
+/* $NetBSD: t_strcoll.c,v 1.2 2021/08/02 17:41:07 andvar Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2017\
The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_strcoll.c,v 1.1 2017/05/26 01:24:19 perseant Exp $");
+__RCSID("$NetBSD: t_strcoll.c,v 1.2 2021/08/02 17:41:07 andvar Exp $");
#include <locale.h>
#include <stdio.h>
@@ -84,7 +84,7 @@
ATF_TC_HEAD(ordering, tc)
{
atf_tc_set_md_var(tc, "descr",
- "Checks collation ordering under diferent locales");
+ "Checks collation ordering under different locales");
}
ATF_TC_BODY(ordering, tc)
Home |
Main Index |
Thread Index |
Old Index