Problem with ant file

I have this build.xml file http://gist.github.com/315109 . Each task runs smoothly, but test .

I don't know why I get (if I run ant with -v ) something like this:

[junit] Symbols around executable and arguments

[JUnit] and not part of the team.

EDIT:

As indicated, it seems that this message is not related to this error.

The problem I get is a bunch of java.lang.ClassNotFoundException

Any ideas why? all classes are in the correct source directory specified in the ant ....

thanks

+4
source share
1 answer

The -v option tells ant to provide verbose output. A message is simply information that tells you to ignore the quotation marks around the echo line and argument values.

If there is an error message, then there is nothing to worry about, especially if it disappears without the -v flag.

If you don’t get any test results, the first thing I’ll try is to run with fork = "no" to make the behavior more predictable for debugging.

You can also try -debug instead of -v, as it gives a different output.

Good luck.

+4
source

Source: https://habr.com/ru/post/1302426/


All Articles