{
Setup.declareEyeballAssemblers();
// ClassLoader cl = Thread.currentThread().getContextClassLoader();
// Enumeration urls = cl.getResources("com/hp/hpl/activeCatalog/vocabularies/Validation.class");
// while (urls.hasMoreElements()) System.err.println("Load from: " + urls.nextElement());
eyeball eye = new eyeball( args );
boolean allPassed = eye.run( out, em );
if (eye.remark) System.err.println( allPassed ? "success" : "some problems reported" );
System.exit( allPassed ? 0 : 1 );
}