Files
remind/test-rem.rexx
dfs 49a0e4b4b8 Added support for AmigaDOS and QDOS.
Removed "-n" option from Rem2PS; make "-m" option on Remind work for this
function.
1996-03-31 04:01:50 +00:00

24 lines
699 B
Rexx

/* ---------------------------------------------------------------------------
$Id: test-rem.rexx,v 1.1 1996-03-31 04:02:00 dfs Exp $
TEST-REM
This file runs an AmigaDOS acceptance test for Remind. To use it, type:
rx test-rem
in the build directory.
(Use this with the ENGLISH version only !!!)
---------------------------------------------------------------------------
*/
address 'COMMAND'
options results
'setenv TEST_GETENV "foo bar baz"'
'remind -e -dxte test.rem 16 feb 1991 >ram:test.out'
'diff ram:test.out test-rem.ami >NIL:'
if rc=0 then do
say "Remind: Acceptance test PASSED"
end
else do
say "Remind: Acceptance test FAILED"
end
'delete ram:test.out quiet'