Files
tcpl/tests/hello-1
2026-05-13 10:40:05 -04:00

19 lines
422 B
Bash
Executable File

#!/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.
. ./tests/init.sh
cat <<EOF >exp || framework_failure_
tcpl: Hello, World!
EOF
./tcpl >out || fail=1
compare exp out || fail=1
exit $fail