Hi,
I've installed Hugs 1.4 of July 1997 on a HP 9000/735 under HP-UX 10.10.
The problem reported here is a minor one.
I am trying to run
make check
from the src directory. The first problem is in your script
src/Tests/testScript. The lines 3-4 should be changed from
CONTEXT_DIFF='/bin/diff -C 1'
DEV_NULL='/dev/null'
to
CONTEXT_DIFF='/bin/diff -C 1'
export CONTEXT_DIFF
DEV_NULL='/dev/null'
export DEV_NULL
so that the Perl script has a fighting chance.
Then I get lots of output, of which the following is a sample:
--!!! Qualified import of unknown module
./hugs -i +w -p? Tests/mod2.hs < /dev/null
expected stdout not matched by reality
*** Tests/mod2.output Thu Dec 5 14:26:16 1996
--- /tmp/runtest16890.3 Wed Oct 8 00:10:00 1997
***************
*** 1,2 ****
ERROR "Tests/mod2.hs": Module "N" not previously loaded
! ? [Leaving Hugs]
--- 1,2 ----
ERROR "Tests/mod2.hs": Module "N" not previously loaded
! ?[Leaving Hugs]
All this seems to be caused by a space in the actual vs. the expected output
just before [Leaving Hugs]
Other than that the install seems fine.
Gary