Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When you look at your output it seems that command line options after the -junit option (-test-suite warnings, -ignore-test-failures, and -project-cache) have all been ignored.

Cause

In the command submitted above the -junit line has a space following the caret.!

When using the caret (^) line continuation character in a Windows command shell script you must be careful to avoid adding a trailing space after the caret as this will cause command parsing to stop at that point. The caret causes the Windows Command Shell to effectively ignore the following character, which is normally a newline. If the character following a caret is a space then the space is ignored and the following newline is processed as normal, meaning the command is effectively ended at that point.

...