Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[p2-dev] JUnit tests

testBundlesTxt has been been constantly failing on my machine for a while now.  I finally got around to looking at this, and it appears in AbstractSimpleConfigurator we have

private String getManifestEntry(File bundleFile, String entry) {
        try {
            String value = null;
            if (bundleFile.isDirectory()) {
                File m = new File(bundleFile, "META-INF/Manifest.MF");
                InputStream os;
                os = new FileInputStream(m);

however, manifest files (at least the one for simple configurator) is uppercase (MANIFEST.MF).  Under linux it can't find this file.  I'm not sure how we were passing our automated JUnit tests. Can somebody look at this?

cheers,
ian

--
R. Ian Bull | EclipseSource Victoria | +1 250 477 7484
http://eclipsesource.com | http://twitter.com/eclipsesource

Back to the top