up vote 13 down vote favorite
1
share [g+] share [fb]

I'm trying to run a particular JUnit test by hand on a Windows XP command line, which has an unusually high number of elements in the class path. I've tried several variations, such as:

set CLASS_PATH=C:\path\a\b\c;C:\path\e\f\g;....
set CLASS_PATH=%CLASS_PATH%;C:\path2\a\b\c;C:\path2\e\f\g;....
...
C:\apps\jdk1.6.0_07\bin\java.exe -client oracle.jdevimpl.junit.runner.TestRunner com.myco.myClass.MyTest testMethod

(Other variations are setting the classpath all on one line, setting the classpath via -classpath as an argument to java"). It always comes down to DOS throwing up it's hands with this error:

The input line is too long.
The syntax of the command is incorrect.

This is a JUnit test testing a rather large existing legacy project, so no suggestions about rearranging my directory structure to something more reasonable, those types of solutions are out for now. I was just trying to gen up a quick test against this project and run it on the command line, and DOS is stonewalling me. Help!

link|improve this question

feedback

7 Answers

up vote 17 down vote accepted

The DOS command line is very limiting in this regard. A workaround is to create a "pathing jar". This is a jar containing only a Manifest.mf file, whose Class-Path specifies the disk paths of your long list of jars, etc. Now just add this pathing jar to your command line classpath. This is usually more convenient than packaging the actual resources together.

As I recall, the disk paths can be relative to the pathing jar itself. So the Manifest.mf might look something like this:

Class-Path: this.jar that.jar ../lib/other.jar

If your pathing jar contains mainly foundational resources, then it won't change too frequently, but you will probably still want to generate it somewhere in your build. For example:

<jar destfile="pathing.jar">
  <manifest>
    <attribute name="Class-Path" value="this.jar that.jar ../lib/other.jar"/>
  </manifest>
</jar>
link|improve this answer
feedback

You could use classpath wildcards.

link|improve this answer
1  
This appears to be new in Java 6. – Chris Noe Oct 14 '08 at 17:20
1  
Hey, that's cool--I didn't know about that. That's definitely a helpful option, especially if (as in our case), the classpath is full of jars, many of which are in the same directory. – Ogre Psalm33 Oct 15 '08 at 12:43
feedback

(I suppose you do not really mean DOS, but refer to cmd.exe.)

I think it is less a CLASSPATH limitation than a environment size/environment variable size limit. On XP, individual environment variables can be 8k in size, the entire environment is limited to 64k. I can't see you would hit that limit.

There is a limit on windows that restricts the length of a command line, on WindowsNT+ it is 8k for cmd.exe. A set command is subject to that restriction. Can it be you have more than 8k worth of directories in your set command? You may be out of luck, then - even if you split them up like Nick Berardi suggested.

link|improve this answer
Woops, yeah, old-school is seeping through. Yes, cmd.exe. – Ogre Psalm33 Oct 14 '08 at 18:08
feedback

Have you tried stacking them?

set CLASS_PATH = c:\path
set ALT_A = %CLASS_PATH%\a\b\c;
set ALT_B = %CLASS_PATH%\e\f\g;
...

set ALL_PATHS = %CLASS_PATH%;%ALT_A%;%ALT_B%
link|improve this answer
We tried a couple variations of this, to no avail. CMD seems to substitute all those %ALT_A%, etc on-the-fly and the final path winds up being too long for it to handle, giving me the same error. – Ogre Psalm33 Oct 14 '08 at 18:04
feedback

I think you are up the creek without a paddle here. The commandline has a limit for arguments to call a programm.

I have 2 sugestion you could try. First, prior to running the junit tests, you can let a script/ant_task create JARs of the various classes on the classpath. Then you can put the JARs on the classpath, which should be shorter.

Another way you could try is to create an antscript to run JUNIT, in ANT there should not be such a limit for classpath entries.

link|improve this answer
feedback

As HuibertGill mentions, I would wrap this in an Ant build script just so that you don't have to manage all of this yourself.

link|improve this answer
feedback

if I were in your shoes, I would download the junction utility from MS : http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx and then map your "C:\path" to say, "z:\" and "c:\path2" to say, "y:\". This way, you will be reducing 4 characters per item in your classpath.

set CLASS_PATH=C:\path\a\b\c;C:\path\e\f\g;....
set CLASS_PATH=%CLASS_PATH%;C:\path2\a\b\c;C:\path2\e\f\g;..

Now, your classpath will be :
set CLASS_PATH=z\a\b\c;z\e\f\g;....
set CLASS_PATH=%CLASS_PATH%;y:\a\b\c;y:\e\f\g;..

It might do more depending on your actual classpath.

link|improve this answer
Junction is one front-end for this in NTFS. mklink /D is another, may already be present in later versions of Windows. – mgaert Dec 16 '11 at 11:32
mlink doesn't seem to be included on windows 7. junction is included as part of windows 7(enterprise). – anjanb Dec 19 '11 at 7:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.