Thread: [Pluginbuilder-development] Autotestsuite not running any test
Status: Beta
Brought to you by:
mbarchfe
From: Hugo C. <hug...@gm...> - 2010-02-19 20:59:52
|
Hello everyone, I've been using plugin builder to build my app for about a year and a half. It works great but we're not using the test part since our continuous integration server is service on a windows machine and therefore cannot run plugin tests. I've recently tried to run the build localy on my machine and discovered to my surprise that, although the test task is being run, autotestsuite is not finding any test. I double checked my test feature to ensure it had all the test plugins for my app. I also double checked the inclusion and exclusion patters for both classes and plugin. They are currently like this: autotestsuite.plugin.inclusions=.*(test|tests)$ autotestsuite.plugin.exclusions=org\.pluginbuilder\..* autotestsuite.class.inclusions=.*Test$ autotestsuite.class.exclusions= And all our test classes use JUnit 4 and are named ending with 'Test'. Our plugins are all named with 'tests' at the end. I've tried looking the .log of the testing running excution of eclipse but got nothing from that. It seems things are just fine there. I'm using java 1.5.0 on an OS X machine, eclipse 3.5 and pluginbuilder 0.7. My app is an RCP app and it builds just fine with plugin builder. Any ideas/tips? Any detail I forgot to mention but I should have mentioned? Thanks, -- Hugo Corbucci CS Grad from 2003 to 2006 CS Master from 2007 to 2010 Cel: (55) (11) 8636 9029 Phone: (55) (11) 2649 8636 Skype user: hugo.corbucci |
From: mbarchfe <mba...@go...> - 2010-02-19 22:22:42
|
Hi, Hm, that should work. What does your log file mention? For example, if you look at http://self.pluginbuilder.org/latest/build.log.txt, there are entries similar to the ones below. Markus [java] -runAutoTests: [java] [mkdir] Created dir: /var/www/buildresults/self/nightly/0.8.0.201002190315NGT/testresults/xml [java] [java] EMMA: collecting runtime coverage data ... [java] [java] Deleting directory /var/www/buildresults/self/nightly/0.8.0.201002190315NGT/testresults/xml [java] [java] ~~~~~~~~~~~~ Searching for JUnit 3 test plug-ins. [java] [java] Using inclusion regular expression(s): .*(test|tests)$ [java] [java] Using exclusion regular expression(s): |^org.eclipse.test$ [java] [java] Bundle matches: org.pluginbuilder.core.test [java] [java] Found 1 plug-ins. [java] [java] ~~~~~~ Searching for JUnit 3 test classes in org.pluginbuilder.core.test [java] [java] Using inclusion regular expression(s): .* [java] [java] Using exclusion regular expression(s): .*(WebDavSynchronize_Test|ServerCommunication_Test)$ [java] [java] Searching bundleentry://192.fwk873275301/coretest.jar for tests. [java] [java] Added test class: org.pluginbuilder.core.internal.BuildConfigPersistency_PDETest [java] [java] Added test class: org.pluginbuilder.core.internal.CopyMapFileWriter_PDETest [java] [java] EMMA: collecting runtime coverage data ... [java] [java] Added test class: org.pluginbuilder.core.internal.templates.Template_PDETest [java] [java] Excluded test class: org.pluginbuilder.core.internal.webdav.WebDavSynchronize_Test [java] [java] Added test class: org.pluginbuilder.internal.core.creators.MapFileCreator_PDETest [java] [java] Added test class: org.pluginbuilder.internal.core.creators.SvnFetchAllFileWriter_PDETest [java] [java] Excluded test class: org.pluginbuilder.internal.core.serverconnection.ServerCommunication_Test [java] [java] Added test class: org.pluginbuilder.internal.core.smartproperties.SmartProperties_Test [java] [java] Scanned 25 Jar entries. [java] [java] Searching bundleentry://192.fwk873275301/lib/easymock.jar for tests. [java] [java] Scanned 37 Jar entries. [java] [java] Searching bundleentry://192.fwk873275301/lib/commons-io-1.3.1.jar for tests. [java] [java] Scanned 69 Jar entries. [java] [java] Searching bundle directory for tests. [java] [java] The bundle directory of org.pluginbuilder.core.test does not contain any class files. [java] On 19.02.2010, at 21:59, Hugo Corbucci wrote: > Hello everyone, > I've been using plugin builder to build my app for about a year and a half. It works great but we're not using the test part since our continuous integration server is service on a windows machine and therefore cannot run plugin tests. > I've recently tried to run the build localy on my machine and discovered to my surprise that, although the test task is being run, autotestsuite is not finding any test. > > I double checked my test feature to ensure it had all the test plugins for my app. I also double checked the inclusion and exclusion patters for both classes and plugin. > They are currently like this: > autotestsuite.plugin.inclusions=.*(test|tests)$ > autotestsuite.plugin.exclusions=org\.pluginbuilder\..* > autotestsuite.class.inclusions=.*Test$ > autotestsuite.class.exclusions= > > And all our test classes use JUnit 4 and are named ending with 'Test'. Our plugins are all named with 'tests' at the end. > > I've tried looking the .log of the testing running excution of eclipse but got nothing from that. It seems things are just fine there. > I'm using java 1.5.0 on an OS X machine, eclipse 3.5 and pluginbuilder 0.7. My app is an RCP app and it builds just fine with plugin builder. > Any ideas/tips? Any detail I forgot to mention but I should have mentioned? > > Thanks, > -- > Hugo Corbucci > CS Grad from 2003 to 2006 > CS Master from 2007 to 2010 > Cel: (55) (11) 8636 9029 > Phone: (55) (11) 2649 8636 > Skype user: hugo.corbucci > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev_______________________________________________ > Pluginbuilder-development mailing list > Plu...@li... > https://lists.sourceforge.net/lists/listinfo/pluginbuilder-development |
From: Hugo C. <hug...@gm...> - 2010-02-19 22:39:11
|
[java] -runAutoTests: [java] [mkdir] Created dir: /tmp/pluginbuilder/st/results/testresults/xml [java] [java] Executing '/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bin/java' with arguments: [java] [java] '-Demma.coverage.out.file=/tmp/pluginbuilder/st/coverage.ec' [java] [java] '-XstartOnFirstThread' [java] [java] '-Xmx512m' [java] [java] '-Dautotestsuite.results.directory=/tmp/pluginbuilder/st/results/testresults/xml' [java] [java] '-Dautotest.debug=true' [java] [java] '-Dautotestsuite.headless=false' [java] [java] '-Dautotestsuite.plugin.inclusions=.*(test|tests)$' [java] [java] '-Dautotestsuite.plugin.exclusions=org\.pluginbuilder\..*|^org.eclipse.test$' [java] [java] '-Dautotestsuite.class.inclusions=.*' [java] [java] '-Dautotestsuite.class.exclusions=' [java] [java] '-classpath' [java] [java] '/Users/night/Downloads/eclipse/plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar' [java] [java] 'org.eclipse.core.launcher.Main' [java] [java] '-application' [java] [java] 'org.pluginbuilder.autotestsuite.application.autoTestApplication' [java] [java] '-testApplication' [java] [java] 'org.eclipse.ide.ui.workbench' [java] [java] '-data' [java] [java] '/tmp/pluginbuilder/st/test-workspace' [java] [java] '-os' [java] [java] 'macosx' [java] [java] '-ws' [java] [java] 'carbon' [java] [java] '-arch' [java] [java] 'x86' [java] [java] '-clean' [java] [java] '-consolelog' [java] [java] '-dev' [java] [java] '/Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/emma.jar' [java] [java] [java] [java] The ' characters around the executable and arguments are [java] [java] not part of the command. [java] [java] !SESSION 2010-02-19 20:36:02.250 ----------------------------------------------- [java] [java] eclipse.buildId=I20090611-1540 [java] [java] java.version=1.5.0_22 [java] [java] java.vendor=Apple Inc. [java] [java] BootLoader constants: OS=macosx, ARCH=x86, WS=carbon, NL=en_US [java] [java] Framework arguments: -application org.pluginbuilder.autotestsuite.application.autoTestApplication -testApplication org.eclipse.ide.ui.workbench [java] [java] Command-line arguments: -application org.pluginbuilder.autotestsuite.application.autoTestApplication -testApplication org.eclipse.ide.ui.workbench -data /tmp/pluginbuilder/st/test-workspace -os macosx -ws carbon -arch x86 -clean -consolelog -dev /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/emma.jar [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.435 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.solaris.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.436 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.linux.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.437 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.aix.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.437 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.linux.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.444 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.cocoa.macosx.x86_64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.444 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.hpux.ia64_32 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.446 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.cocoa.macosx.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.447 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.447 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.hpux.PA_RISC is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.448 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.solaris.sparc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.449 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.wpf.win32.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.449 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.win32.win32.ia64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.450 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.carbon.macosx.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.450 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.linux.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.451 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.linux.x86_64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.451 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.cocoa.macosx.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.452 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.photon.qnx.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.452 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.solaris.sparc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.452 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.carbon.macosx.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.453 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.win32.win32.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.453 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.win32.win32.x86_64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.570 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.solaris.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.571 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.linux.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.572 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.aix.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.574 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.linux.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.574 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.cocoa.macosx.x86_64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.575 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.hpux.ia64_32 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.575 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.cocoa.macosx.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.575 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.576 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.hpux.PA_RISC is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.576 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.solaris.sparc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.576 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.wpf.win32.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.577 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.win32.win32.ia64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.577 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.carbon.macosx.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.577 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.linux.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.578 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.linux.x86_64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.579 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.cocoa.macosx.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.579 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.photon.qnx.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.597 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.solaris.sparc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.633 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.carbon.macosx.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.633 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.win32.win32.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.635 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.win32.win32.x86_64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.715 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.solaris.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.716 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.linux.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.718 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.aix.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.718 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.linux.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.719 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.cocoa.macosx.x86_64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.719 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.hpux.ia64_32 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.720 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.cocoa.macosx.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.720 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.721 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.hpux.PA_RISC is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.722 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.motif.solaris.sparc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.723 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.wpf.win32.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.723 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.win32.win32.ia64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.724 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.carbon.macosx.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.725 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.linux.ppc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.727 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.linux.x86_64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.727 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.cocoa.macosx.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.729 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.photon.qnx.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.730 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.gtk.solaris.sparc is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.730 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.carbon.macosx.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.730 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.win32.win32.x86 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.directorywatcher 4 0 2010-02-19 20:36:10.732 [java] [java] !MESSAGE The installable unit org.eclipse.equinox.executable_root.win32.win32.x86_64 is missing the filename property. [java] [java] [java] [java] !ENTRY org.eclipse.equinox.p2.engine 4 4 2010-02-19 20:36:12.080 [java] [java] !MESSAGE An error occurred while installing the items [java] [java] !SUBENTRY 1 org.eclipse.equinox.p2.engine 4 0 2010-02-19 20:36:12.080 [java] [java] !MESSAGE session context was:(profile=SDKProfile, phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Install, operand=null --> [R]org.eclipse.equinox.executable_root 3.3.200.v20090521-1800-7M-Fm-FI3UouOe61h3BYGC, action=org.eclipse.equinox.internal.p2.touchpoint.natives.actions.UnzipAction). [java] [java] !SUBENTRY 1 org.eclipse.equinox.p2.touchpoint.natives 4 0 2010-02-19 20:36:12.081 [java] [java] !MESSAGE The artifact for binary,org.eclipse.equinox.executable_root,3.3.200.v20090521-1800-7M-Fm-FI3UouOe61h3BYGC is not available. [java] [java] [java] [java] !ENTRY org.eclipse.osgi 2 0 2010-02-19 20:36:12.139 [java] [java] !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists: [java] [java] !SUBENTRY 1 org.eclipse.osgi 2 0 2010-02-19 20:36:12.139 [java] [java] !MESSAGE Bundle org.eclipse.jdt.apt.pluggable.core_1.0.200.v20090526-2130 [101] was not resolved. [java] [java] !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core 2 0 2010-02-19 20:36:12.139 [java] [java] !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.tool_0.0.0. [java] [java] !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core 2 0 2010-02-19 20:36:12.140 [java] [java] !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.apt.dispatch_0.0.0. [java] [java] !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core 2 0 2010-02-19 20:36:12.141 [java] [java] !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.apt.model_0.0.0. [java] [java] !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core 2 0 2010-02-19 20:36:12.141 [java] [java] !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.apt.util_0.0.0. [java] [java] !SUBENTRY 1 org.eclipse.osgi 2 0 2010-02-19 20:36:12.141 [java] [java] !MESSAGE Bundle org.eclipse.jdt.compiler.apt_1.0.200.v20090528-1135 [103] was not resolved. [java] [java] !SUBENTRY 2 org.eclipse.jdt.compiler.apt 2 0 2010-02-19 20:36:12.142 [java] [java] !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.tool_0.0.0. [java] [java] !SUBENTRY 1 org.eclipse.osgi 2 0 2010-02-19 20:36:12.142 [java] [java] !MESSAGE Bundle org.eclipse.jdt.compiler.tool_1.0.100.v_963 [104] was not resolved. [java] [java] !SUBENTRY 2 org.eclipse.jdt.compiler.tool 2 0 2010-02-19 20:36:12.142 [java] [java] !MESSAGE Missing Constraint: Bundle-RequiredExecutionEnvironment: JavaSE-1.6 [java] [java] Failed to locate test application "org.eclipse.ide.ui.workbench" [java] Project base dir set to: /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests [java] [antcall] calling target(s) [-markErrorOrFailure] in build file /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml [java] parsing buildfile /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml with URI = file:/Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml [java] Project base dir set to: /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests [java] Trying to override old definition of task BundleFileLocator [java] Trying to override old definition of task GetHostName [java] Trying to override old definition of task SetRegex [java] Trying to override old definition of datatype hasErrorOrFailure [java] [property] Loading /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build_Nitim-2.local.properties [java] [property] Unable to find property file: /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build_Nitim-2.local.properties [java] [property] Loading /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build_local.properties [java] Override ignored for property "swt.fragment" [java] Override ignored for property "ws" [java] Override ignored for property "buildHome" [java] Override ignored for property "arch" [java] Override ignored for property "os" [java] Override ignored for property "eclipseDir" [java] Override ignored for property "buildDirectory" [java] [property] Loading /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.properties [java] Override ignored for property "autotestsuite.plugin.exclusions" [java] Override ignored for property "test.library.xml" [java] Override ignored for property "test.aggregated.report" [java] Override ignored for property "autotestsuite.headless" [java] Override ignored for property "autotest.testapplication" [java] Override ignored for property "autotestsuite.class.inclusions" [java] Override ignored for property "pluginbuilder.coverage.exclusionfilter" [java] Override ignored for property "autotestsuite.plugin.inclusions" [java] Override ignored for property "autotestsuite.trace" [java] Override ignored for property "autotestsuite.class.exclusions" [java] Override ignored for property "test.result.dir" [java] Override ignored for property "test.eclipse.host" [java] Override ignored for property "emma.coverage.output" [java] Override ignored for property "test.workspace" [java] Override ignored for property "pluginbuilder.is.runcoverage" [java] Override ignored for property "test.eclipse.zip" [java] Override ignored for property "test.eclipseExtensionDirectory" [java] Override ignored for property "pluginbuilder.coverage.inclusionfilter" [java] Override ignored for property "test.eclipse.host.eclipse" [java] Importing file /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/build_shared.xml from /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml [java] parsing buildfile /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/build_shared.xml with URI = file:/Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/build_shared.xml [java] Trying to override old definition of task shellscript [java] Trying to override old definition of task propertycopy [java] Trying to override old definition of task pathtofileset [java] Trying to override old definition of task remoteant [java] Trying to override old definition of task runtarget [java] Trying to override old definition of task assert [java] Trying to override old definition of task propertyregex [java] Trying to override old definition of task math [java] Trying to override old definition of task trycatch [java] Trying to override old definition of task antserver [java] Trying to override old definition of task antcallback [java] Trying to override old definition of task compilewithwalls [java] Trying to override old definition of task outofdate [java] Trying to override old definition of task osfamily [java] Trying to override old definition of task stopwatch [java] Trying to override old definition of task throw [java] Trying to override old definition of task antclipse [java] Trying to override old definition of task urlencode [java] Trying to override old definition of task bool [java] Trying to override old definition of task timestampselector [java] Trying to override old definition of task foreach [java] Trying to override old definition of task if [java] Trying to override old definition of task propertyselector [java] Trying to override old definition of task sortlist [java] Trying to override old definition of task antfetch [java] Trying to override old definition of task post [java] Trying to override old definition of task forget [java] Trying to override old definition of task limit [java] Trying to override old definition of task switch [java] Trying to override old definition of task var [java] Trying to override old definition of task inifile [java] Trying to override old definition of task verifydesign [java] Override ignored for property "is.emma" [java] Build sequence for target(s) `-markErrorOrFailure' is [-markErrorOrFailure] [java] Complete build sequence is [-markErrorOrFailure, -set.archive.location, -set.eclipse.local.tar.server, -set.eclipse.local.tar.non.server, Shared build targets.-unpack.eclipse.windows, -unpack.eclipse.linux, -get.features, -unpack.features, -unpack.feature, Shared build targets.-set.archive.location, umListFeaturesSite, -unpack.eclipse.windows, -get.archive, test, unpack.eclipse, -emmaReport, updateManager, -runAutoTests, -emmaInit, -init, run, Shared build targets.-get.archive.ifnecessary, -installEclipseExtensionLocation, Shared build targets.-set.eclipse.local.tar.non.server, Shared build targets.-get.features, Shared build targets.test, Shared build targets.-unpack.features, Shared build targets.-unpack.eclipse.linux, Shared build targets.-unpack.feature, -emmaInstrument, umRemoveSite, Shared build targets.unpack.eclipse, umAddSite, Shared build targets.-unpack.eclipse.ifnecessary, Shared build targets.-set.eclipse.local.tar.server, -get.archive.ifnecessary, -checkTestResultFileForErrors, -unpackEclipse, Shared build targets.-get.archive, -unpack.eclipse.ifnecessary, ] [java] [antcall] Entering /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml... [java] Build sequence for target(s) `-markErrorOrFailure' is [-markErrorOrFailure] [java] Complete build sequence is [-markErrorOrFailure, -set.archive.location, -set.eclipse.local.tar.server, -set.eclipse.local.tar.non.server, Shared build targets.-unpack.eclipse.windows, -unpack.eclipse.linux, -get.features, -unpack.features, -unpack.feature, Shared build targets.-set.archive.location, umListFeaturesSite, -unpack.eclipse.windows, -get.archive, test, unpack.eclipse, -emmaReport, updateManager, -runAutoTests, -emmaInit, -init, run, Shared build targets.-get.archive.ifnecessary, -installEclipseExtensionLocation, Shared build targets.-set.eclipse.local.tar.non.server, Shared build targets.-get.features, Shared build targets.test, Shared build targets.-unpack.features, Shared build targets.-unpack.eclipse.linux, Shared build targets.-unpack.feature, -emmaInstrument, umRemoveSite, Shared build targets.unpack.eclipse, umAddSite, Shared build targets.-unpack.eclipse.ifnecessary, Shared build targets.-set.eclipse.local.tar.server, -get.archive.ifnecessary, -checkTestResultFileForErrors, -unpackEclipse, Shared build targets.-get.archive, -unpack.eclipse.ifnecessary, ] [java] [java] -markErrorOrFailure: [java] [antcall] Exiting /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml. [java] [java] -emmaReport: [java] [mkdir] Created dir: /tmp/pluginbuilder/st/results/testresults/coverage [java] [emma] [EMMA v2.0, build 5312 (2005/06/12 19:32:43)] [java] [report] processing input files ... [java] [report] 1 file(s) read and merged in 72 ms [java] [report] nothing to do: no runtime coverage data found in any of the data files [java] [java] run: [java] Project base dir set to: /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests [java] [antcall] calling target(s) [umRemoveSite] in build file /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml [java] parsing buildfile /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml with URI = file:/Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml [java] Project base dir set to: /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests [java] Trying to override old definition of task BundleFileLocator [java] Trying to override old definition of task GetHostName [java] Trying to override old definition of task SetRegex [java] Trying to override old definition of datatype hasErrorOrFailure [java] [property] Loading /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build_Nitim-2.local.properties [java] [property] Unable to find property file: /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build_Nitim-2.local.properties [java] [property] Loading /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build_local.properties [java] Override ignored for property "swt.fragment" [java] Override ignored for property "ws" [java] Override ignored for property "buildHome" [java] Override ignored for property "arch" [java] Override ignored for property "os" [java] Override ignored for property "eclipseDir" [java] Override ignored for property "buildDirectory" [java] [property] Loading /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.properties [java] Override ignored for property "autotestsuite.plugin.exclusions" [java] Override ignored for property "test.library.xml" [java] Override ignored for property "test.aggregated.report" [java] Override ignored for property "autotestsuite.headless" [java] Override ignored for property "autotest.testapplication" [java] Override ignored for property "autotestsuite.class.inclusions" [java] Override ignored for property "pluginbuilder.coverage.exclusionfilter" [java] Override ignored for property "autotestsuite.plugin.inclusions" [java] Override ignored for property "autotestsuite.trace" [java] Override ignored for property "autotestsuite.class.exclusions" [java] Override ignored for property "test.result.dir" [java] Override ignored for property "test.eclipse.host" [java] Override ignored for property "emma.coverage.output" [java] Override ignored for property "test.workspace" [java] Override ignored for property "pluginbuilder.is.runcoverage" [java] Override ignored for property "test.eclipse.zip" [java] Override ignored for property "test.eclipseExtensionDirectory" [java] Override ignored for property "pluginbuilder.coverage.inclusionfilter" [java] Override ignored for property "test.eclipse.host.eclipse" [java] Importing file /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/build_shared.xml from /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml [java] parsing buildfile /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/build_shared.xml with URI = file:/Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/build_shared.xml [java] Trying to override old definition of task shellscript [java] Trying to override old definition of task propertycopy [java] Trying to override old definition of task pathtofileset [java] Trying to override old definition of task remoteant [java] Trying to override old definition of task runtarget [java] Trying to override old definition of task assert [java] Trying to override old definition of task propertyregex [java] Trying to override old definition of task math [java] Trying to override old definition of task trycatch [java] Trying to override old definition of task antserver [java] Trying to override old definition of task antcallback [java] Trying to override old definition of task compilewithwalls [java] Trying to override old definition of task outofdate [java] Trying to override old definition of task osfamily [java] Trying to override old definition of task stopwatch [java] Trying to override old definition of task throw [java] Trying to override old definition of task antclipse [java] Trying to override old definition of task urlencode [java] Trying to override old definition of task bool [java] Trying to override old definition of task timestampselector [java] Trying to override old definition of task foreach [java] Trying to override old definition of task if [java] Trying to override old definition of task propertyselector [java] Trying to override old definition of task sortlist [java] Trying to override old definition of task antfetch [java] Trying to override old definition of task post [java] Trying to override old definition of task forget [java] Trying to override old definition of task limit [java] Trying to override old definition of task switch [java] Trying to override old definition of task var [java] Trying to override old definition of task inifile [java] Trying to override old definition of task verifydesign [java] Override ignored for property "is.emma" [java] Build sequence for target(s) `umRemoveSite' is [umRemoveSite] [java] Complete build sequence is [umRemoveSite, -set.archive.location, -set.eclipse.local.tar.server, -set.eclipse.local.tar.non.server, Shared build targets.-unpack.eclipse.windows, -unpack.eclipse.linux, -get.features, -unpack.features, -unpack.feature, Shared build targets.-set.archive.location, umListFeaturesSite, -unpack.eclipse.windows, -get.archive, test, unpack.eclipse, -emmaReport, updateManager, -runAutoTests, -emmaInit, -init, run, Shared build targets.-get.archive.ifnecessary, -installEclipseExtensionLocation, Shared build targets.-set.eclipse.local.tar.non.server, -markErrorOrFailure, Shared build targets.-get.features, Shared build targets.test, Shared build targets.-unpack.features, Shared build targets.-unpack.eclipse.linux, Shared build targets.-unpack.feature, -emmaInstrument, Shared build targets.unpack.eclipse, umAddSite, Shared build targets.-unpack.eclipse.ifnecessary, Shared build targets.-set.eclipse.local.tar.server, -get.archive.ifnecessary, -checkTestResultFileForErrors, -unpackEclipse, Shared build targets.-get.archive, -unpack.eclipse.ifnecessary, ] [java] [antcall] Entering /Users/night/Documents/Agilbits/Projetos/O2/workspace/StoryTouch-Builder/build-files/automatedTests/run-tests.xml... [java] Build sequence for target(s) `umRemoveSite' is [umRemoveSite] [java] Complete build sequence is [umRemoveSite, -set.archive.location, -set.eclipse.local.tar.server, -set.eclipse.local.tar.non.server, Shared build targets.-unpack.eclipse.windows, -unpack.eclipse.linux, -get.features, -unpack.features, -unpack.feature, Shared build targets.-set.archive.location, umListFeaturesSite, -unpack.eclipse.windows, -get.archive, test, unpack.eclipse, -emmaReport, updateManager, -runAutoTests, -emmaInit, -init, run, Shared build targets.-get.archive.ifnecessary, -installEclipseExtensionLocation, Shared build targets.-set.eclipse.local.tar.non.server, -markErrorOrFailure, Shared build targets.-get.features, Shared build targets.test, Shared build targets.-unpack.features, Shared build targets.-unpack.eclipse.linux, Shared build targets.-unpack.feature, -emmaInstrument, Shared build targets.unpack.eclipse, umAddSite, Shared build targets.-unpack.eclipse.ifnecessary, Shared build targets.-set.eclipse.local.tar.server, -get.archive.ifnecessary, -checkTestResultFileForErrors, -unpackEclipse, Shared build targets.-get.archive, -unpack.eclipse.ifnecessary, ] |
From: mbarchfe <mba...@go...> - 2010-02-20 12:38:10
|
Hi Hugo, The following line seems critical: Failed to locate test application "org.eclipse.ide.ui.workbench" You should set your RCP application as test application. Just enter it on the Test tab of the pluginbuilder editor. Good luck ;-) Markus |
From: Hugo C. <hug...@gm...> - 2010-02-20 13:29:11
|
Hello Markus, I've tried that before. Used to be "com.o2filmes.storytouch.application" (considering my application extension is defined under my com.o2filmes.storytouch plugin and its id is application). The com.o2filmes.storytouch plugin is included in my core feature which is the first one on the list of features plugin builder should build. The weirdest part is that it finds that application to build the product but not when running the tests. I thought about adding this plugin as a dependency for the test feature but it was useless. I keep getting that Failed to locate test application "com.o2filmes.storytouch.application" message. Out of ideas... :( Hugo On Sat, Feb 20, 2010 at 10:28 AM, mbarchfe <mba...@go...> wrote: > Hi Hugo, > > The following line seems critical: > > Failed to locate test application "org.eclipse.ide.ui.workbench" > > You should set your RCP application as test application. Just enter it on > the Test tab of the pluginbuilder editor. > > Good luck ;-) > Markus -- Hugo Corbucci CS Grad from 2003 to 2006 CS Master from 2007 to 2010 Cel: (55) (11) 8636 9029 Phone: (55) (11) 2649 8636 Skype user: hugo.corbucci |
From: mbarchfe <mba...@go...> - 2010-02-21 15:47:57
|
Hi Hugo, > I've tried that before. Used to be "com.o2filmes.storytouch.application" (considering my application extension is defined under my com.o2filmes.storytouch plugin and its id is application). The com.o2filmes.storytouch plugin is included in my core feature which is the first one on the list of features plugin builder should build. > > The weirdest part is that it finds that application to build the product but not when running the tests. I thought about adding this plugin as a dependency for the test feature but it was useless. I keep getting that Failed to locate test application "com.o2filmes.storytouch.application" message. No, you do not need a dependency from the autotest plug-in to your plug-in. I would suggest that you compare your set-up with the set-up of the example application ( http://www.pluginbuilder.org/documentation/example/), maybe that sheds some light. You can also try to start the test installation manually and thereby check if all dependencies of your plug-in (the one which contains the application) are available. In that case the log file should output more than just the "Failed to locate" message. More good luck Markus |
From: Hugo C. <hug...@gm...> - 2010-02-22 10:49:35
|
Hey Markus, Thanks a lot for trying! On Sun, Feb 21, 2010 at 12:47 PM, mbarchfe <mba...@go...> wrote: > No, you do not need a dependency from the autotest plug-in to your plug-in. > I would suggest that you compare your set-up with the set-up of the example > application ( http://www.pluginbuilder.org/documentation/example/), maybe > that sheds some light. > I've tried that over and over. Weirdest part is that it was working fine. > You can also try to start the test installation manually and thereby check > if all dependencies of your plug-in (the one which contains the application) > are available. In that case the log file should output more than just the > "Failed to locate" message. > How can I start the test installation manually? I've tried creating an autotestsuite run configuration on my eclipse also. It runs the app fine but no tests are run. It just opens the app and stays there until I close it. Any idea why? Should this be working? Can it be an indication of why the build is not finding anything? Thanks, -- Hugo Corbucci CS Grad from 2003 to 2006 CS Master from 2007 to 2010 Cel: (55) (11) 8636 9029 Phone: (55) (11) 2649 8636 Skype user: hugo.corbucci |
From: mbarchfe <mba...@go...> - 2010-08-19 05:24:48
|
<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hi,<br><br>Hm, that should work. Anything useful in your log file? Search for "runAutoTests" and you will find something like the following.<div><br></div><div>Markus<br><div><div><br> [java] -runAutoTests:<br> [java] [mkdir] Created dir: /var/www/buildresults/self/nightly/0.8.0.201002190315NGT/testresults/xml<br> [java] [java] EMMA: collecting runtime coverage data ...<br> [java] [java] Deleting directory /var/www/buildresults/self/nightly/0.8.0.201002190315NGT/testresults/xml<br> [java] [java] ~~~~~~~~~~~~ Searching for JUnit 3 test plug-ins.<br> [java] [java] Using inclusion regular expression(s): .*(test|tests)$<br> [java] [java] Using exclusion regular expression(s): |^org.eclipse.test$<br> [java] [java] Bundle matches: org.pluginbuilder.core.test<br> [java] [java] Found 1 plug-ins.<br> [java] [java] ~~~~~~ Searching for JUnit 3 test classes in org.pluginbuilder.core.test<br> [java] [java] Using inclusion regular expression(s): .*<br> [java] [java] Using exclusion regular expression(s): .*(WebDavSynchronize_Test|ServerCommunication_Test)$<br> [java] [java] Searching bundleentry://192.fwk873275301/coretest.jar for tests.<br> [java] [java] Added test class: org.pluginbuilder.core.internal.BuildConfigPersistency_PDETest<br> [java] [java] Added test class: org.pluginbuilder.core.internal.CopyMapFileWriter_PDETest<br> [java] [java] EMMA: collecting runtime coverage data ...<br> [java] [java] Added test class: org.pluginbuilder.core.internal.templates.Template_PDETest<br> [java] [java] Excluded test class: org.pluginbuilder.core.internal.webdav.WebDavSynchronize_Test<br> [java] [java] Added test class: org.pluginbuilder.internal.core.creators.MapFileCreator_PDETest<br> [java] [java] Added test class: org.pluginbuilder.internal.core.creators.SvnFetchAllFileWriter_PDETest<br> [java] [java] Excluded test class: org.pluginbuilder.internal.core.serverconnection.ServerCommunication_Test<br> [java] [java] Added test class: org.pluginbuilder.internal.core.smartproperties.SmartProperties_Test<br> [java] [java] Scanned 25 Jar entries.<br> [java] [java] Searching bundleentry://192.fwk873275301/lib/easymock.jar for tests.<br> [java] [java] Scanned 37 Jar entries.<br> [java] [java] Searching bundleentry://192.fwk873275301/lib/commons-io-1.3.1.jar for tests.<br> [java] [java] Scanned 69 Jar entries.<br> [java] [java] Searching bundle directory for tests.<br> [java] [java] The bundle directory of org.pluginbuilder.core.test does not contain any class files.<br> [java] <br><br>On 19.02.2010, at 21:59, Hugo Corbucci wrote:<br><br><blockquote type="cite">Hello everyone,<br></blockquote><blockquote type="cite">I've been using plugin builder to build my app for about a year and a half. It works great but we're not using the test part since our continuous integration server is service on a windows machine and therefore cannot run plugin tests.<br></blockquote><blockquote type="cite">I've recently tried to run the build localy on my machine and discovered to my surprise that, although the test task is being run, autotestsuite is not finding any test.<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">I double checked my test feature to ensure it had all the test plugins for my app. I also double checked the inclusion and exclusion patters for both classes and plugin.<br></blockquote><blockquote type="cite">They are currently like this:<br></blockquote><blockquote type="cite">autotestsuite.plugin.inclusions=.*(test|tests)$<br></blockquote><blockquote type="cite">autotestsuite.plugin.exclusions=org\.pluginbuilder\..*<br></blockquote><blockquote type="cite">autotestsuite.class.inclusions=.*Test$<br></blockquote><blockquote type="cite">autotestsuite.class.exclusions=<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">And all our test classes use JUnit 4 and are named ending with 'Test'. Our plugins are all named with 'tests' at the end.<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">I've tried looking the .log of the testing running excution of eclipse but got nothing from that. It seems things are just fine there.<br></blockquote><blockquote type="cite">I'm using java 1.5.0 on an OS X machine, eclipse 3.5 and pluginbuilder 0.7. My app is an RCP app and it builds just fine with plugin builder.<br></blockquote><blockquote type="cite">Any ideas/tips? Any detail I forgot to mention but I should have mentioned?<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">Thanks,<br></blockquote><blockquote type="cite">-- <br></blockquote><blockquote type="cite">Hugo Corbucci<br></blockquote><blockquote type="cite">CS Grad from 2003 to 2006<br></blockquote><blockquote type="cite">CS Master from 2007 to 2010<br></blockquote><blockquote type="cite">Cel: (55) (11) 8636 9029<br></blockquote><blockquote type="cite">Phone: (55) (11) 2649 8636<br></blockquote><blockquote type="cite">Skype user: hugo.corbucci<br></blockquote><blockquote type="cite">------------------------------------------------------------------------------<br></blockquote><blockquote type="cite">Download Intel&#174; Parallel Studio Eval<br></blockquote><blockquote type="cite">Try the new software tools for yourself. Speed compiling, find bugs<br></blockquote><blockquote type="cite">proactively, and fine-tune applications for parallel performance.<br></blockquote><blockquote type="cite">See why Intel Parallel Studio got high marks during beta.<br></blockquote><blockquote type="cite">http://p.sf.net/sfu/intel-sw-dev_______________________________________________<br></blockquote><blockquote type="cite">Pluginbuilder-development mailing list<br></blockquote><blockquote type="cite">Plu...@li...<br></blockquote><blockquote type="cite">https://lists.sourceforge.net/lists/listinfo/pluginbuilder-development<br></blockquote><br></div></div></div></body></html> |