A2osX/TESTS/TESTSETUP.txt

38 lines
780 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

NEW
PREFIX
AUTO 4,1
#!/BIN/SH
#
# This script makes the support files needed for various
# test scripts such as CATTEST.
#
# This Creates the CATTEXT file used by CATTEST
#
ECHO "This is Line 1" > CATTEXT
ECHO "------------------" >> CATTEXT
ECHO >> CATTEXT
ECHO >> CATTEXT
ECHO >> CATTEXT
ECHO >> CATTEXT
ECHO "------------------" >> CATTEXT
ECHO "This is Line 8" >> CATTEXT
#
# This Creates the CATCHARS file used by CATTEST
#
ECHO "\x05\x06\x07\x08\x09\x0B\x0C\x0F\x10\x11\x12\x13" > CATCHARS
ECHO "\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F" >> CATCHARS
#
# A directory called TESTDIR is used by several tests
#
IF [ -D TESTDIR ]
#dir already exists
ELSE
MD TESTDIR
FI
#
#
#
MAN
TEXT /MAKE/USR/SHARE/TESTS/TESTSETUP