| www.delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
| Message-ID: | <432A11F2.9090504@scytek.de> |
| Date: | Thu, 15 Sep 2005 20:29:38 -0400 |
| From: | Volker Quetschke <quetschke AT scytek DOT de> |
| User-Agent: | Mozilla Thunderbird 0.8 (Windows/20040913) |
| MIME-Version: | 1.0 |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: A new day, a new snapshot, more testing required on the road to 1.5.19 |
| X-IsSubscribed: | yes |
--------------enig68C31BC8CE09274D84543886
Content-Type: multipart/mixed;
boundary="------------040408080505070501060907"
This is a multi-part message in MIME format.
--------------040408080505070501060907
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
> 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
--------------040408080505070501060907
Content-Type: text/plain;
name="anttest.sh"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="anttest.sh"
#!/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
--------------040408080505070501060907--
--------------enig68C31BC8CE09274D84543886
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: OpenPGP digital signature
Content-Disposition: attachment; filename="signature.asc"
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFDKhHyPTXJup+KeF0RAhD+AKCBvbRRACw5zftzNKFXDsYH36EGrgCg2cf0
ie8fkF6s5ux9yDm+0VDW+9M=
=yc29
-----END PGP SIGNATURE-----
--------------enig68C31BC8CE09274D84543886--
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |