Module Name: src
Committed By: rillig
Date: Sun Jun 16 18:40:59 UTC 2024
Modified Files:
src/distrib/sets/lists/tests: mi
src/tests/games: Makefile
Added Files:
src/tests/games: t_morse.sh
Log Message:
tests/morse: add basic tests
To generate a diff of this commit:
cvs rdiff -u -r1.1323 -r1.1324 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.2 -r1.3 src/tests/games/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/games/t_morse.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/sets/lists/tests/mi
diff -u src/distrib/sets/lists/tests/mi:1.1323 src/distrib/sets/lists/tests/mi:1.1324
--- src/distrib/sets/lists/tests/mi:1.1323 Sat Jun 15 13:26:31 2024
+++ src/distrib/sets/lists/tests/mi Sun Jun 16 18:40:58 2024
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1323 2024/06/15 13:26:31 wiz Exp $
+# $NetBSD: mi,v 1.1324 2024/06/16 18:40:58 rillig Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@@ -1721,6 +1721,7 @@
./usr/tests/games/Atffile tests-games-tests compattestfile,atf
./usr/tests/games/Kyuafile tests-games-tests kyua
./usr/tests/games/t_factor tests-games-tests compattestfile,atf
+./usr/tests/games/t_morse tests-games-tests compattestfile,atf
./usr/tests/include tests-include-tests compattestfile,atf
./usr/tests/include/Atffile tests-include-tests compattestfile,atf
./usr/tests/include/Kyuafile tests-include-tests compattestfile,atf,kyua
Index: src/tests/games/Makefile
diff -u src/tests/games/Makefile:1.2 src/tests/games/Makefile:1.3
--- src/tests/games/Makefile:1.2 Wed Nov 21 15:39:34 2007
+++ src/tests/games/Makefile Sun Jun 16 18:40:58 2024
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile,v 1.2 2007/11/21 15:39:34 jmmv Exp $
+# $NetBSD: Makefile,v 1.3 2024/06/16 18:40:58 rillig Exp $
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/games
TESTS_SH= t_factor
+TESTS_SH+= t_morse
.include <bsd.test.mk>
Added files:
Index: src/tests/games/t_morse.sh
diff -u /dev/null src/tests/games/t_morse.sh:1.1
--- /dev/null Sun Jun 16 18:40:59 2024
+++ src/tests/games/t_morse.sh Sun Jun 16 18:40:58 2024
@@ -0,0 +1,83 @@
+# $NetBSD: t_morse.sh,v 1.1 2024/06/16 18:40:58 rillig Exp $
+#
+# Copyright (c) 2024 The NetBSD Foundation, Inc.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+atf_test_case digits
+digits_body() {
+ trailing_space=' '
+ morse_s_digits="\
+ -----
+ .----
+ ..---
+ ...--
+ ....-
+ .....
+ -....
+ --...
+ ---..
+ ----.
+$trailing_space
+ ...-.-
+"
+ atf_check -o "inline:$morse_s_digits" \
+ /usr/games/morse -s 0123456789
+
+ morse_digits="\
+ daw daw daw daw daw
+ dit daw daw daw daw
+ dit dit daw daw daw
+ dit dit dit daw daw
+ dit dit dit dit daw
+ dit dit dit dit dit
+ daw dit dit dit dit
+ daw daw dit dit dit
+ daw daw daw dit dit
+ daw daw daw daw dit
+
+ dit dit dit daw dit daw
+"
+ atf_check -o "inline:$morse_digits" \
+ /usr/games/morse 0123456789
+}
+
+# Before 2024-06-16, non-ASCII characters invoked undefined behavior,
+# possibly crashing morse.
+atf_test_case nonascii
+nonascii_body()
+{
+ expected="\
+
+ dit dit dit daw dit daw
+"
+ atf_check -o "inline:$expected" \
+ /usr/games/morse äöü
+}
+
+atf_init_test_cases()
+{
+ atf_add_test_case digits
+ atf_add_test_case nonascii
+}