mirror of
https://github.com/A2osX/A2osX.git
synced 2024-10-31 08:05:30 +00:00
25 lines
629 B
Plaintext
25 lines
629 B
Plaintext
NEW
|
||
PREFIX
|
||
AUTO 4,1
|
||
#!/BIN/SH
|
||
#
|
||
# This is a test of passing args
|
||
# This script calls ARGTEST2 passing a known set
|
||
# of arguments which ARGTEST2 checks to verify
|
||
# arg passing works.
|
||
#
|
||
# Note that $$ is passed which is this process id
|
||
# and can be checked in ARGTEST2 to compare with
|
||
# parent process id, this will validate both are working.
|
||
#
|
||
# This script is part of the BUILDTEST suite, as such
|
||
# we first make sure it was called from that suite by
|
||
# checking for $LOG
|
||
#
|
||
#
|
||
# Now call Argtest Sub Script
|
||
#
|
||
. ARGTEST2 A 1 B 2 C 3 Hello $$ 82 Tenth
|
||
MAN
|
||
TEXT /MAKE/USR/SHARE/TESTS/ARGTEST
|