New testing

This commit is contained in:
vxclutch
2026-05-11 13:22:36 -04:00
parent 8fb5146431
commit ac05b0fdfd
7 changed files with 80 additions and 64 deletions

18
t/name-1 Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/sh
# Testing standard Hello
#
# Copyright (C) 2026 fSD
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
. ./t/init.sh
cat <<EOF >exp || framework_failure_
tcpl: Hello, Seaman!
EOF
./tcpl Seaman >out || fail=1
compare exp out || fail=1
exit $fail