Skip to content

Commit

Permalink
Implemented the silent module as a nonotify replacement, copied from …
Browse files Browse the repository at this point in the history
…the data module, with tests copied from test-nonotify.

Signed-off-by: maclean <gilleain.torrance@gmail.com>
  • Loading branch information
egonw committed Sep 16, 2011
1 parent 294cecf commit 78fb9c8
Show file tree
Hide file tree
Showing 88 changed files with 15,547 additions and 3 deletions.
11 changes: 8 additions & 3 deletions build.xml
Expand Up @@ -524,7 +524,7 @@
list="core,ioformats"/>
<foreach target="compile-module" param="module"
parallel="${parallel}" maxthreads="${threadCount}"
list="data,dict,diff,qm,standard,log4j"/>
list="silent,data,dict,diff,qm,standard,log4j"/>
<foreach target="compile-module" param="module" trim="yes"
parallel="${parallel}" maxthreads="${threadCount}"
list="datadebug,nonotify,isomorphism,atomtype,render,valencycheck,
Expand Down Expand Up @@ -578,7 +578,7 @@
parallel="${parallel}" maxthreads="${threadCount}"
list="test-data,test-qsaratomic,test-qsarbond,
test-pdb,test-smiles,test-extra,test-atomtype,
test-structgen,test-iordf"/>
test-structgen,test-iordf,test-silent"/>
<foreach target="compile-module" param="module" trim="true"
parallel="${parallel}" maxthreads="${threadCount}"
list="test-qsarmolecular,test-builder3d,test-datadebug,
Expand Down Expand Up @@ -620,6 +620,7 @@
<includesfile name="${metainf}/control.libdepends"/>
<includesfile name="${metainf}/datadebug.libdepends"/>
<includesfile name="${metainf}/data.libdepends"/>
<includesfile name="${metainf}/silent.libdepends"/>
<includesfile name="${metainf}/extra.libdepends"/>
<includesfile name="${metainf}/cip.libdepends"/>
<includesfile name="${metainf}/io.libdepends"/>
Expand Down Expand Up @@ -666,6 +667,7 @@
<include name="cdk-control.jar"/>
<include name="cdk-datadebug.jar"/>
<include name="cdk-data.jar"/>
<include name="cdk-silent.jar"/>
<include name="cdk-extra.jar"/>
<include name="cdk-interfaces.jar"/>
<include name="cdk-io.jar"/>
Expand Down Expand Up @@ -742,6 +744,7 @@
<include name="cdk-control.jar"/>
<include name="cdk-datadebug.jar"/>
<include name="cdk-data.jar"/>
<include name="cdk-silent.jar"/>
<include name="cdk-diff.jar"/>
<include name="cdk-extra.jar"/>
<include name="cdk-interfaces.jar"/>
Expand Down Expand Up @@ -809,6 +812,7 @@
<includesfile name="${metainf}/test-core.libdepends"/>
<includesfile name="${metainf}/test-data.libdepends"/>
<includesfile name="${metainf}/test-datadebug.libdepends"/>
<includesfile name="${metainf}/test-silent.libdepends"/>
<includesfile name="${metainf}/test-diff.libdepends"/>
<includesfile name="${metainf}/test-extra.libdepends"/>
<includesfile name="${metainf}/test-builder3d.libdepends"/>
Expand Down Expand Up @@ -844,6 +848,7 @@
<include name="cdk-test-core.jar"/>
<include name="cdk-test-data.jar"/>
<include name="cdk-test-datadebug.jar"/>
<include name="cdk-test-silent.jar"/>
<include name="cdk-test-diff.jar"/>
<include name="cdk-test-extra.jar"/>
<include name="cdk-test-builder3d.jar"/>
Expand Down Expand Up @@ -1093,7 +1098,7 @@
qsarmolecular,qsarionpot,qsarprotein,pdb,pcore,inchi,
structgen,libiomd,libiocml,formula,render,extra,sdg,
ioformats,log4j,smsd,signature,iordf,cip,tautomer,
isomorphism,renderbasic,renderawt"/>
isomorphism,renderbasic,renderawt,silent"/>
</target>

<target id="limitations" name="limitations" depends="noJunit, dist-all"
Expand Down
3 changes: 3 additions & 0 deletions src/META-INF/silent.cdkdepends
@@ -0,0 +1,3 @@
cdk-annotation.jar
cdk-interfaces.jar
cdk-core.jar
1 change: 1 addition & 0 deletions src/META-INF/silent.libdepends
@@ -0,0 +1 @@
vecmath*.jar
7 changes: 7 additions & 0 deletions src/META-INF/test-silent.cdkdepends
@@ -0,0 +1,7 @@
cdk-annotation.jar
cdk-interfaces.jar
cdk-core.jar
cdk-silent.jar
cdk-test.jar
cdk-test-interfaces.jar
cdk-diff.jar
2 changes: 2 additions & 0 deletions src/META-INF/test-silent.devellibdepends
@@ -0,0 +1,2 @@
junit-4.5.jar

2 changes: 2 additions & 0 deletions src/META-INF/test-silent.libdepends
@@ -0,0 +1,2 @@
log4j*.jar
vecmath*.jar

0 comments on commit 78fb9c8

Please sign in to comment.