Anyone know why I am getting following error during the 3d regression
test of the ast release 2008-11-04.

cmd/3d:
+ /u1/leesang/dev/ext/ast/arch/sol8.sun4/bin/3d
/u1/leesang/dev/ext/ast/arch/sol8.sun4/bin/ksh regress
/u1/leesang/dev/ext/ast/src/cmd/3d/3d.tst
regress[1250]: .[286]: TEST: line 44: 2300: Memory fault
regress[1]: CLEANUP[320]: RM: line 800: 2301: Memory fault
regress[1]: CLEANUP[320]: RM: line 802: 2302: Memory fault

Here are the build environment.
1. Build script
        #!/bin/ksh
        exec 1>build_nmake.log
        exec 2>&1
        set -x

        unset LD_LIBRARY_PATH PATH
        export
PATH=/usr/local/devtools/binutils/bin:/usr/local/devtools/gcc/bin:/bin:/
usr/bin:/usr/local/bin

        GZIP=/usr/local/bin/gzip
        WGET=/usr/local/bin/wget

        USER_ID="I accept www.opensource.org/licenses/cpl"
        PASSWORD="."
        URL="http://public.research.att.com/~gsf/download";
        RELEASES="2008-11-04"
        PACKAGES="INIT ast-open"

        # Download source code
        [[ -d bin ]] || mkdir -p bin && [[ -d lib/package/tgz ]] ||
mkdir -p lib/package/tgz
        for RELEASE in $RELEASES
        do
          for PACKAGE in $PACKAGES
          do
            [[ ! -f lib/package/tgz/$PACKAGE.$RELEASE.tgz ]] \
              && $WGET -O lib/package/tgz/$PACKAGE.$RELEASE.tgz
--continue \
                --http-user="$USER_ID" --http-passwd="$PASSWORD"
$URL/tgz/$PACKAGE.$RELEASE.tgz
          done
        done

        # Build
        for PACKAGE in $PACKAGES
        do
          $GZIP -cd lib/package/tgz/$PACKAGE.$RELEASE.tgz | tar -xvf -
          bin/package read
          bin/package make
          bin/package test
          bin/package install
        done
        $

2. Build platform
        $ uname -a
        SunOS devybld004 5.8 Generic_108528-29 sun4u sun4u sun4 SunOS

3. Compiler
        $ /usr/local/devtools/gcc/bin/gcc --version
        gcc (GCC) 3.3.3
        Copyright (C) 2003 Free Software Foundation, Inc.
        This is free software; see the source for copying conditions.
There is NO
        warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

Thanks
Sang

THE INFORMATION CONTAINED IN THIS MESSAGE AND ANY ATTACHMENT MAY BE PRIVILEGED, 
CONFIDENTIAL, PROPRIETARY OR OTHERWISE PROTECTED FROM DISCLOSURE. If the reader 
of this message is not the intended recipient, you are hereby notified that any 
dissemination, distribution, copying or use of this message and any attachment 
is strictly prohibited. If you have received this message in error, please 
notify us immediately by replying to the message and permanently delete it from 
your computer and destroy any printout thereof.
_______________________________________________
ast-developers mailing list
[email protected]
https://mailman.research.att.com/mailman/listinfo/ast-developers

Reply via email to