This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: A new day, a new snapshot, more testing required on the road to 1.5.19


However, I *really* do appreciate all of the testing that we've seen so
far.  I hope everyone who has tested previous snapshots will continue to
test this one and any other snapshots up until I eventually release 1.5.19.

I saw that 20050915 was out and started the OOo testsuite again ;)


The attached script is the codensed part of configure that tests if ant
is installed and usable.

If you set $ANT and $JAVA_HOME in the script correctly this is supposed
to succeed. It does for 20050914 and older versions, it does *sometimes*
for 20050915.

Volker

P.S.: The 9MB testcase seems to be fixed with the new snapshot.

P.P.S: Yes, JAVA_HOME must be posix format, and uses cygpath
       and converts it into DOS style.

--
PGP/GPG key  (ID: 0x9F8A785D)  available  from  wwwkeys.de.pgp.net
key-fingerprint 550D F17E B082 A3E9 F913  9E53 3D35 C9BA 9F8A 785D
#!/bin/bash

export JAVA_HOME="/cygdrive/c/j2sdk1.4.2_05"
export ANT="/cygdrive/c/apache-ant-1.6.5/bin/ant"

cat > conftest.java << EOF
    public class conftest {
	int testmethod(int a, int b) {
            return a + b;
	}
    }
EOF

cat > conftest.xml << EOF
    <project name="conftest" default="conftest">
	<target name="conftest">
            <javac srcdir="." includes="conftest.java">
	    </javac>
	</target>
    </project>
EOF

while true; do

date

rm -f conftest.class

ant_cmd="$ANT -buildfile conftest.xml 1>&2 >qq"
eval $ant_cmd

mystatus=$?

if test $mystatus != 0 ; then
  echo test failed
#  exit 1
else
  echo test OK
fi

done

Attachment: signature.asc
Description: OpenPGP digital signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]