question
by Tobia Di Pisa
Hello to all,
I am practicing with Hibernate and I have a problem with the management of the caching. Excuse my ignorance.
The simple program that I have developed in order to try the caching's functionality gives me
an output that I can't understand. The problem is that when the program is using the
data, which is captured from the DB through the funzione load(), it behaves as if the data
it was not in cache.Studying the handbook of Hibernate I saw that the data is inserted
in cache every time is executed the load(), and that it is possible to use the function
contain() in order to see if this data is effectively in cache, like it really ensues.
This is the code fragment:
private void spatialFactory(String[] args){
config = new Configuration();
config.configure();
config.addClass(MultiPolygonEntity.class);
Settings settings = config.buildSettings();
System.out.println("Generating Data for Dialect: "+ settings.getDialect().getClass().getName());
SessionFactory factory = config.buildSessionFactory();
Session session = factory.openSession();
Transaction tx = null;
try{
tx = session.beginTransaction();
if(args[0].equals("store_mulpol")){
geom = createMPolygon();
for(long i=1; i<=gid; i++){
MultiPolygonEntity MPolygon = (MultiPolygonEntity)session.load(MultiPolygonEntity.class,i);
Geometry the_geom = MPolygon.getGeometry();
if(geom.intersects(the_geom))throw new Exception();
}
MultiPolygonEntity MultiPolygon = new MultiPolygonEntity(gid+1,344,"Polygon",geom);
session.save(MultiPolygon);
tx.commit();
}
}
...
}
In the moment in which the program is executed, the instruction ' Geometry the_geom = MPolygon.getGeometry();' in order to use
a property of the loaded object (geometry exactly), the output is the following:
22:22:27,975 DEBUG MemoryStore:138 - Cache_SpatialCache: Cache_SpatialMemoryStore miss for hsp.MultiPolygonEntity#1
22:22:27,975 DEBUG Cache:661 - Cache_Spatial cache - Miss
Hibernate: select multipolyg0_.gid as gid0_0_, multipolyg0_.code as code0_0_, multipolyg0_.name as name0_0_, multipolyg0_.the_geom as the4_0_0_ from spatial multipolyg0_ where multipolyg0_.gid=?
22:22:28,053 DEBUG MemoryStore:138 - Cache_SpatialCache: Cache_SpatialMemoryStore miss for hsp.MultiPolygonEntity#1
22:22:28,053 DEBUG Cache:661 - Cache_Spatial cache - Miss
To me it seems that, although the load() is executed, the data is not found in cache, even if the use of the function contain() results present.
Do you know the reason ?
I have shaped Hibernate with EhCacheProvider and in the rows of mapping I have set up one cache Read-Write.
thanks,
Tobia
_________________________________________________________________
Conosci Doretta? Contattala, è ora su Messenger!
http://www.doretta82.it/banner/index.html
16 years, 11 months
Hibernate Statistics
by Michael Plöd
Hi,
I realized that the Hibernate Statistics lack a few things in my opinion.
There are for example:
a) There is a bug in QueryStatisticsImpl that prevents the minTime from
being computed properly (HHH-2948)
b) Critera Queries are not part of the Query Statistics. This gives an
incomplete "picture" to the user. Maybe it is just a naming issue and this
should be called "HqlStatistics" but "QueryStatistics" sound to me that
Criteria Queries are conained in there. Fixing this should not be too hard.
c) I came across some NPEs while trying to get the contents of a Cache
Region that got invalidated (I need to dig deeper into this in order to be
able to provide more detail)
I would step up and help solving some issues around the statistics if
desired.
Regars,
Mike
16 years, 11 months
Using hibernate with UDFs
by richard@bowmansystems.com
I asked in the forums a while back about using Hibernate to tie back to set-returning UDFs instead of a table or a view.
http://forum.hibernate.org/viewtopic.php?t=980650&highlight=
I have looked at Hibernate alternatives solutions and they all come up short in some way. I'm interested in hacking Hibernate to add support for tying back to UDFs at this point. I was just curious if this was something anyone else had looked at in the past, was on someone's TODO list, was something there are strong feelings about, etc before I got started.
Thanks
16 years, 11 months
HSearch-133
by John Griffin
Emmanuel,
I have the index creation working. About searching though, the user will
have to supply the similarity class. There is no way of knowing what
similarity was use to build an index and Similarities must be kept the same
between indexing and searching or results are undefined. The query had to be
told. Do you want to have a similarity setter in FullTextQueryImpl or an
overloaded constructor.
When we created the index, each entity could have its own similarity. If
this is the case the similarity will have to be identified by entity. To do
this we will have to build a MultiSearcher instead of a MultiReader. The
Similarity can only be set on Searchables. I don't think this is a big
issue, it's not that big or difficult of a change to make. Thoughts?
John G.
16 years, 11 months
Re: junit test fail (Steve Ebersole)
by Mario Ds Briggs
I have seen some of the failures that you have reported too with DB2. Here
is the list i have seen. The first 3 are reported by the hibernate QA
results too and all have nothing to do with the DB/db driver.
ASTParserLoadingTest
CriteriaHQLAlignmentTest
HQLTest
SQLLoaderTest [alias for the column name in get is bogus]
ReadOnlyTest [Instance is not associated with the session. Given how the
TC is coded, it will fail]
NativeSQLQueriesTest [column not found for property product.id.orgid ]
hibernate-dev-req
uest(a)lists.jboss.
org To
Sent by: hibernate-dev(a)lists.jboss.org
hibernate-dev-bou cc
nces(a)lists.jboss.
org Subject
hibernate-dev Digest, Vol 18, Issue
10
18/12/2007 03:16
Please respond to
hibernate-dev@lis
ts.jboss.org
Send hibernate-dev mailing list submissions to
hibernate-dev(a)lists.jboss.org
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.jboss.org/mailman/listinfo/hibernate-dev
or, via email, send a message with subject or body 'help' to
hibernate-dev-request(a)lists.jboss.org
You can reach the person managing the list at
hibernate-dev-owner(a)lists.jboss.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of hibernate-dev digest..."
Today's Topics:
1. Re: junit test fail (Steve Ebersole)
----------------------------------------------------------------------
Message: 1
Date: Mon, 17 Dec 2007 15:45:49 -0600
From: Steve Ebersole <steve(a)hibernate.org>
Subject: Re: [hibernate-dev] junit test fail
To: Hibernate Dev <hibernate-dev(a)lists.jboss.org>
Message-ID: <D68451FA-250D-4BEC-8D52-4BBCCF9065D2(a)hibernate.org>
Content-Type: text/plain; charset="us-ascii"
The log file is not attached. I would assume the issue is simply not
filtering out expected failure tests. Are you setting the
'hibernate.test.validatefailureexpected' system property?
On Dec 13, 2007, at 6:48 AM, Julius Stroffek wrote:
> Hi All,
>
> when I run junit tests on 3.2 branch, some tests fail/have errors:
> BidirectionalOneToManyCascadeTest
> ASTParserLoadingTest
> CriteriaHQLAlignmentTest
> HQLTest
> EagerKeyManyToOneTest
> SQLLoaderTest
> ReadOnlyTest
> NativeSQLQueriesTest
> WhereTest
> InstrumentTest
>
> The log file is attached.
>
> Is there an issue or I have mis configured something? I have not
> changed anything I just executed
> ant
> ant junitreport
>
> as described at http://www.hibernate.org/6.html#A5
>
> Thanks for your suggestions.
>
> Cheers
>
> Julo
> Buildfile: build.xml
> [taskdef] Could not load definitions from resource clovertasks. It
> could not be found.
>
> splash:
>
> init:
> [echo] Build Hibernate-3.2.5.ga (2007-12-13 11:09:55)
> [echo] JDK version: 1.5
>
> cleantestdb:
>
> init.antlr:
>
> antlr:
>
> compile:
>
> compiletest:
> [mkdir] Created dir: /zfs/hibernate/core/build/testclasses
> [javac] Compiling 816 source files to /zfs/hibernate/core/build/
> testclasses
> [javac] Note: Some input files use or override a deprecated API.
> [javac] Note: Recompile with -Xlint:deprecation for details.
> [copy] Copying 258 files to /zfs/hibernate/core/build/testclasses
>
> junit.prepare:
> [mkdir] Created dir: /zfs/hibernate/core/build/testout
>
> junit:
> [taskdef] Could not load definitions from resource clovertasks. It
> could not be found.
>
> splash:
>
> init:
> [echo] Build Hibernate-3.2.5.ga (2007-12-13 11:09:55)
> [echo] JDK version: 1.5
>
> cleantestdb:
>
> init.antlr:
>
> antlr:
>
> compile:
>
> compiletest:
>
> junit.prepare:
> [delete] Deleting directory /zfs/hibernate/core/build/testout
> [mkdir] Created dir: /zfs/hibernate/core/build/testout
>
> junit.standard:
> [junit] 11:10:18,501 INFO Environment:514 - Hibernate 3.2.5
> [junit] 11:10:18,520 INFO Environment:532 - loaded properties
> from resource hibernate.properties:
> {hibernate.connection.driver_class=org.hsqldb.jdbcDriver,
> hibernate
> .cache.provider_class=org.hibernate.cache.HashtableCacheProvider,
> hibernate.max_fetch_depth=1,
> hibernate.dialect=org.hibernate.dialect.HSQLDialect,
> hibernate.jdbc.use_streams_for_binary=true,
> hibernate.format_sql=true, hibernate.query.substitutions=yes 'Y', no
> 'N', hibernate.proxool.pool_alias=pool1,
> hibernate.connection.username=sa,
> hibernate.cache.region_prefix=hibernate.test,
> hibernate.connection.url=jdbc:hsqldb:./build/db/hsqldb/hibernate,
> hibernate.bytecode.use_reflection_optimizer=false,
> hibernate.connection.password=****,
> hibernate.jdbc.batch_versioned_data=true,
> hibernate.connection.pool_size=1}
> [junit] 11:10:18,528 INFO Environment:563 - using java.io
> streams to persist binary types
> [junit] 11:10:18,532 INFO Environment:681 - Bytecode provider
> name : cglib
> [junit] 11:10:18,545 INFO Environment:598 - using JDK 1.4
> java.sql.Timestamp handling
> [junit] 11:10:18,551 INFO DriverManagerConnectionProvider:41 -
> Using Hibernate built-in connection pool (not for production use!)
> [junit] 11:10:18,553 INFO DriverManagerConnectionProvider:42 -
> Hibernate connection pool size: 1
> [junit] 11:10:18,555 INFO DriverManagerConnectionProvider:45 -
> autocommit mode: false
> [junit] 11:10:18,561 INFO DriverManagerConnectionProvider:80 -
> using driver: org.hsqldb.jdbcDriver at URL: jdbc:hsqldb:./build/db/
> hsqldb/hibernate
> [junit] 11:10:18,563 INFO DriverManagerConnectionProvider:86 -
> connection properties: {user=sa, password=****}
> [junit] 11:10:18,565 INFO DriverManagerConnectionProvider:41 -
> Using Hibernate built-in connection pool (not for production use!)
> [junit] 11:10:18,567 INFO DriverManagerConnectionProvider:42 -
> Hibernate connection pool size: 1
> [junit] 11:10:18,569 INFO DriverManagerConnectionProvider:45 -
> autocommit mode: false
> [junit] 11:10:18,571 INFO DriverManagerConnectionProvider:80 -
> using driver: org.hsqldb.jdbcDriver at URL: jdbc:hsqldb:./build/db/
> hsqldb/hibernate
> [junit] 11:10:18,573 INFO DriverManagerConnectionProvider:86 -
> connection properties: {user=sa, password=****}
> [junit] 11:10:18,575 INFO DriverManagerConnectionProvider:41 -
> Using Hibernate built-in connection pool (not for production use!)
> [junit] 11:10:18,577 INFO DriverManagerConnectionProvider:42 -
> Hibernate connection pool size: 1
> [junit] 11:10:18,581 INFO DriverManagerConnectionProvider:45 -
> autocommit mode: false
> [junit] 11:10:18,583 INFO DriverManagerConnectionProvider:80 -
> using driver: org.hsqldb.jdbcDriver at URL: jdbc:hsqldb:./build/db/
> hsqldb/hibernate
> [junit] 11:10:18,585 INFO DriverManagerConnectionProvider:86 -
> connection properties: {user=sa, password=****}
> [junit] 11:10:18,587 INFO DriverManagerConnectionProvider:41 -
> Using Hibernate built-in connection pool (not for production use!)
> [junit] 11:10:18,589 INFO DriverManagerConnectionProvider:42 -
> Hibernate connection pool size: 1
> [junit] 11:10:18,591 INFO DriverManagerConnectionProvider:45 -
> autocommit mode: false
> [junit] 11:10:18,593 INFO DriverManagerConnectionProvider:80 -
> using driver: org.hsqldb.jdbcDriver at URL: jdbc:hsqldb:./build/db/
> hsqldb/hibernate
> [junit] 11:10:18,595 INFO DriverManagerConnectionProvider:86 -
> connection properties: {user=sa, password=****}
> [junit] 11:10:18,597 INFO DriverManagerConnectionProvider:41 -
> Using Hibernate built-in connection pool (not for production use!)
> [junit] 11:10:18,599 INFO DriverManagerConnectionProvider:42 -
> Hibernate connection pool size: 1
> [junit] 11:10:18,601 INFO DriverManagerConnectionProvider:45 -
> autocommit mode: false
> [junit] 11:10:18,603 INFO DriverManagerConnectionProvider:80 -
> using driver: org.hsqldb.jdbcDriver at URL: jdbc:hsqldb:./build/db/
> hsqldb/hibernate
> [junit] 11:10:18,605 INFO DriverManagerConnectionProvider:86 -
> connection properties: {user=sa, password=****}
> [junit] 11:10:18,607 INFO DriverManagerConnectionProvider:41 -
> Using Hibernate built-in connection pool (not for production use!)
> [junit] 11:10:18,609 INFO DriverManagerConnectionProvider:42 -
> Hibernate connection pool size: 1
> [junit] 11:10:18,611 INFO DriverManagerConnectionProvider:45 -
> autocommit mode: false
> [junit] 11:10:18,613 INFO DriverManagerConnectionProvider:80 -
> using driver: org.hsqldb.jdbcDriver at URL: jdbc:hsqldb:./build/db/
> hsqldb/hibernate
> [junit] 11:10:18,615 INFO DriverManagerConnectionProvider:86 -
> connection properties: {user=sa, password=****}
> [junit] 11:10:18,965 INFO Dialect:152 - Using dialect:
> org.hibernate.dialect.SybaseDialect
> [junit] 11:10:19,116 INFO Dialect:152 - Using dialect:
> org.hibernate.dialect.SQLServerDialect
> [junit] 11:10:19,199 INFO Dialect:152 - Using dialect:
> org.hibernate.dialect.HSQLDialect
> [junit] 11:10:19,430 INFO Dialect:152 - Using dialect:
> org.hibernate.dialect.HSQLDialect
> 11:10:19,508 INFO DriverManagerConnectionProvider:147 - cleaning up
> connection pool: jdbc:hsqldb:./build/db/hsqldb/hibernate
> 11:10:19,509 INFO DriverManagerConnectionProvider:147 - cleaning up
> connection pool: jdbc:hsqldb:./build/db/hsqldb/hibernate
> 11:10:19,510 INFO DriverManagerConnectionProvider:147 - cleaning up
> connection pool: jdbc:hsqldb:./build/db/hsqldb/hibernate
> 11:10:19,510 INFO DriverManagerConnectionProvider:147 - cleaning up
> connection pool: jdbc:hsqldb:./build/db/hsqldb/hibernate
> 11:10:19,510 INFO DriverManagerConnectionProvider:147 - cleaning up
> connection pool: jdbc:hsqldb:./build/db/hsqldb/hibernate
> 11:10:19,511 INFO DriverManagerConnectionProvider:147 - cleaning up
> connection pool: jdbc:hsqldb:./build/db/hsqldb/hibernate
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.479
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.314
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.178
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.159
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.021
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.013
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.211
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.183
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.231
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.134
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.135
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.191
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.179
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 1.505
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.84
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.412
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 1, Time elapsed: 0.391
> sec
> [junit] TEST
> org.hibernate.test.cascade.BidirectionalOneToManyCascadeTest FAILED
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.282
> sec
> [junit] Tests run: 24, Failures: 0, Errors: 0, Time elapsed:
> 0.043 sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.354
> sec
> [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.497
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.236
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.186
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.083
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.073
> sec
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.256
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.219
> sec
> [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.49
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.161
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.097
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.326
> sec
> [junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed:
> 0.637 sec
> [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.087
> sec
> [junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed:
> 0.244 sec
> [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.195
> sec
> [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.427
> sec
> [junit] Tests run: 11, Failures: 0, Errors: 0, Time elapsed: 1.09
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.348
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.427
> sec
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.098
> sec
> [junit] Tests run: 11, Failures: 0, Errors: 0, Time elapsed:
> 0.019 sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.005
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.003
> sec
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.165
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.268
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.136
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.078
> sec
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.172
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.495
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.203
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.168
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.317
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.213
> sec
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.405
> sec
> [junit] Tests run: 14, Failures: 0, Errors: 0, Time elapsed:
> 1.439 sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.113
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.006
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.004
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.004
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.004
> sec
> [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.189
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.004
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.004
> sec
> [junit] Tests run: 70, Failures: 0, Errors: 1, Time elapsed:
> 7.431 sec
> [junit] TEST org.hibernate.test.hql.ASTParserLoadingTest FAILED
> [junit] Tests run: 38, Failures: 0, Errors: 0, Time elapsed:
> 4.441 sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.447
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.87
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 1, Time elapsed: 1.799
> sec
> [junit] TEST org.hibernate.test.hql.CriteriaHQLAlignmentTest FAILED
> [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.327
> sec
> [junit] Tests run: 169, Failures: 5, Errors: 0, Time elapsed:
> 9.208 sec
> [junit] TEST org.hibernate.test.hql.HQLTest FAILED
> [junit] Tests run: 49, Failures: 0, Errors: 0, Time elapsed:
> 0.641 sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.338
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.251
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.105
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.064
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.055
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.177
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.06
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.206
> sec
> [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 4.178
> sec
> [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 3.456
> sec
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.118
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.371
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.096
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.313
> sec
> [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.067
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.13
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.307
> sec
> [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.163
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.124
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.08
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.276
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.061
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.106
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.115
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.059
> sec
> [junit] Tests run: 3, Failures: 1, Errors: 0, Time elapsed: 0.12
> sec
> [junit] TEST
> org
> .hibernate.test.keymanytoone.bidir.component.EagerKeyManyToOneTest
> FAILED
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.1 sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.084
> sec
> [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.155
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.1 sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.464
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.1 sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.048
> sec
> [junit] Tests run: 101, Failures: 0, Errors: 0, Time elapsed:
> 6.728 sec
> [junit] Tests run: 14, Failures: 0, Errors: 0, Time elapsed:
> 2.203 sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.242
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.044
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.132
> sec
> [junit] Tests run: 26, Failures: 0, Errors: 0, Time elapsed:
> 0.665 sec
> [junit] Tests run: 16, Failures: 0, Errors: 0, Time elapsed:
> 0.579 sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.038
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.17
> sec
> [junit] Tests run: 18, Failures: 0, Errors: 0, Time elapsed:
> 1.156 sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.051
> sec
> [junit] Tests run: 11, Failures: 0, Errors: 0, Time elapsed:
> 0.259 sec
> [junit] Tests run: 18, Failures: 0, Errors: 1, Time elapsed:
> 0.295 sec
> [junit] TEST org.hibernate.test.legacy.SQLLoaderTest FAILED
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.084
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.063
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.069
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.04
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.072
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.084
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.078
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.051
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.004
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.005
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.221
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.335
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.165
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.101
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.113
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.113
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.096
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.282
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.102
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.087
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.07
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.132
> sec
> [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.365
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.143
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.109
> sec
> [junit] Tests run: 17, Failures: 0, Errors: 0, Time elapsed:
> 0.508 sec
> [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.191
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.074
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.099
> sec
> [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.077
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.064
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.049
> sec
> [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.165
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.053
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.052
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.09
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.057
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.058
> sec
> [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.155
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 1.128
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 1, Time elapsed: 0.198
> sec
> [junit] TEST org.hibernate.test.readonly.ReadOnlyTest FAILED
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.051
> sec
> [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.122
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.004
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.044
> sec
> [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.029
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.007
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.006
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.006
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.007
> sec
> [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.007
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.048
> sec
> [junit] Tests run: 9, Failures: 0, Errors: 1, Time elapsed: 0.32
> sec
> [junit] TEST
> org.hibernate.test.sql.hand.query.NativeSQLQueriesTest FAILED
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.047
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.191
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.075
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.084
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.063
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.056
> sec
> [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.203
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.076
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.063
> sec
> [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 2.208
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.066
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.062
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.069
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.047
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.062
> sec
> [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.204
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.125
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.065
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.046
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.004
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.003
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.075
> sec
> [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.09
> sec
> [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.006
> sec
> [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.047
> sec
> [junit] java.io.FileNotFoundException: /zfs/hibernate/core/
> junitvmwatcher1801281546.properties (No such file or directory)
> [junit] at java.io.FileInputStream.open(Native Method)
> [junit] at
java.io.FileInputStream.<init>(FileInputStream.java:
> 106)
> [junit] at java.io.FileReader.<init>(FileReader.java:55)
> [junit] at
> org
> .apache
> .tools
> .ant
> .taskdefs.optional.junit.JUnitTask.executeAsForked(JUnitTask.java:
> 1028)
> [junit] at
> org
> .apache
> .tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:
> 859)
> [junit] at
> org
> .apache
> .tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:
> 782)
> [junit] at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
> [junit] at
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown
> Source)
> [junit] at
> sun
> .reflect
> .DelegatingMethodAccessorImpl
> .invoke(DelegatingMethodAccessorImpl.java:25)
> [junit] at
java.lang.reflect.Method.invoke(Method.java:585)
> [junit] at
> org
> .apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:
> 105)
> [junit] at
org.apache.tools.ant.Task.perform(Task.java:348)
> [junit] at
org.apache.tools.ant.Target.execute(Target.java:357)
> [junit] at
org.apache.tools.ant.Target.performTasks(Target.java:
> 385)
> [junit] at
> org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
> [junit] at
> org
> .apache
> .tools
> .ant
> .helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:
> 38)
> [junit] at
> org.apache.tools.ant.Project.executeTargets(Project.java:1181)
> [junit] at
org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
> [junit] at
> org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
> [junit] at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
> [junit] at
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown
> Source)
> [junit] at
> sun
> .reflect
> .DelegatingMethodAccessorImpl
> .invoke(DelegatingMethodAccessorImpl.java:25)
> [junit] at
java.lang.reflect.Method.invoke(Method.java:585)
> [junit] at
> org
> .apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:
> 105)
> [junit] at
org.apache.tools.ant.Task.perform(Task.java:348)
> [junit] at
> org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:62)
> [junit] at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
> [junit] at
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown
> Source)
> [junit] at
> sun
> .reflect
> .DelegatingMethodAccessorImpl
> .invoke(DelegatingMethodAccessorImpl.java:25)
> [junit] at
java.lang.reflect.Method.invoke(Method.java:585)
> [junit] at
> org
> .apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:
> 105)
> [junit] at
org.apache.tools.ant.Task.perform(Task.java:348)
> [junit] at
org.apache.tools.ant.Target.execute(Target.java:357)
> [junit] at
org.apache.tools.ant.Target.performTasks(Target.java:
> 385)
> [junit] at
> org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
> [junit] at
> org.apache.tools.ant.Project.executeTarget(Project.java:1298)
> [junit] at
> org
> .apache
> .tools
> .ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
> [junit] at
> org.apache.tools.ant.Project.executeTargets(Project.java:1181)
> [junit] at
org.apache.tools.ant.Main.runBuild(Main.java:698)
> [junit] at
org.apache.tools.ant.Main.startAnt(Main.java:199)
> [junit] at
> org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
> [junit] at
> org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
> [junit] Running org.hibernate.test.where.WhereTest
> [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
> [junit] Tests FAILED (crashed)
> [taskdef] Could not load definitions from resource clovertasks. It
> could not be found.
>
> instrument.prepare:
>
> splash:
>
> init:
> [echo] Build Hibernate-3.2.5.ga (2007-12-13 11:09:55)
> [echo] JDK version: 1.5
>
> init.antlr:
>
> antlr:
>
> compile:
>
> compiletest:
> [javac] Compiling 9 source files to /zfs/hibernate/core/build/
> testclasses
>
> instrument.cglib:
> [instrument] starting instrumentation
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/CustomBlobType.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.CustomBlobType]; file = file:/
> zfs/hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/CustomBlobType.class
> [instrument] log4j:WARN No appenders could be found for logger
> (org.hibernate.bytecode.cglib.CglibClassTransformer).
> [instrument] log4j:WARN Please initialize the log4j system properly.
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Document.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Document]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Document.class
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.upperCaseName]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.upperCaseName]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.summary]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.summary]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.text]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.text]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.owner]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.owner]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.folder]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.folder]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.lastTextModification]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.lastTextModification]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.lastTextModification]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.folder]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.folder]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.owner]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.owner]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.summary]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.summary]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.text]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.text]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.upperCaseName]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.upperCaseName]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.text]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.text]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Document.lastTextModification]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Entity.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Entity]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Entity.class
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.child]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.child]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.sibling]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.sibling]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.child]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.child]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.sibling]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Entity.sibling]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/
> EntityWithOneToOnes.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes]; file =
> file:/zfs/hibernate/core/build/testclasses/org/hibernate/test/
> instrument/domain/EntityWithOneToOnes.class
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.name]
> [instrument] accepting transformation of field access
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneNoProxy]
> [instrument] accepting transformation of field access
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneNoProxy]
> [instrument] accepting transformation of field access
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneProxy]
> [instrument] accepting transformation of field access
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneProxy]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.name]
> [instrument] accepting transformation of field access
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneNoProxy]
> [instrument] accepting transformation of field access
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneNoProxy]
> [instrument] accepting transformation of field access
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneProxy]
> [instrument] accepting transformation of field access
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneProxy]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Folder.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Folder]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Folder.class
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.parent]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.parent]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.subfolders]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.subfolders]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.documents]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.documents]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.nameWasread]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.nameWasread]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.subfolders]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.documents]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.nameWasread]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.documents]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.documents]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.parent]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.parent]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.subfolders]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Folder.subfolders]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/OneToOneNoProxy.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.OneToOneNoProxy]; file = file:/
> zfs/hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/OneToOneNoProxy.class
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entityId]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entityId]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entity]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entity]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entityId]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entityId]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entity]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entity]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/OneToOneProxy.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.OneToOneProxy]; file = file:/
> zfs/hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/OneToOneProxy.class
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.entityId]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.entityId]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.entity]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.entity]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.entityId]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.entityId]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.entity]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.OneToOneProxy.entity]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Owner.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Owner]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Owner.class
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Owner.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Owner.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Owner.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Owner.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Owner.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Owner.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Owner.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Owner.name]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Problematic
> $Representation.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Problematic$Representation];
> file = file:/zfs/hibernate/core/build/testclasses/org/hibernate/test/
> instrument/domain/Problematic$Representation.class
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic
> $Representation.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic
> $Representation.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic
> $Representation.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic
> $Representation.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic
> $Representation.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic
> $Representation.bytes]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Problematic.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Problematic]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Problematic.class
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.representation]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.representation]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.id]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.name]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.representation]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.bytes]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.representation]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.representation]
> [instrument] accepting transformation of field access
> [org.hibernate.test.instrument.domain.Problematic.bytes]
>
> junit.instrument.cglib:
> [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed:
> 12.594 sec
> [junit] java.io.FileNotFoundException: /zfs/hibernate/core/
> junitvmwatcher341564053.properties (No such file or directory)
> [junit] at java.io.FileInputStream.open(Native Method)
> [junit] at
java.io.FileInputStream.<init>(FileInputStream.java:
> 106)
> [junit] at java.io.FileReader.<init>(FileReader.java:55)
> [junit] at
> org
> .apache
> .tools
> .ant
> .taskdefs.optional.junit.JUnitTask.executeAsForked(JUnitTask.java:
> 1028)
> [junit] at
> org
> .apache
> .tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:
> 817)
> [junit] at
> org
> .apache
> .tools
> .ant.taskdefs.optional.junit.JUnitTask.executeOrQueue(JUnitTask.java:
> 1657)
> [junit] at
> org
> .apache
> .tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:
> 764)
> [junit] at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
> [junit] at
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown
> Source)
> [junit] at
> sun
> .reflect
> .DelegatingMethodAccessorImpl
> .invoke(DelegatingMethodAccessorImpl.java:25)
> [junit] at
java.lang.reflect.Method.invoke(Method.java:585)
> [junit] at
> org
> .apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:
> 105)
> [junit] at
org.apache.tools.ant.Task.perform(Task.java:348)
> [junit] at
org.apache.tools.ant.Target.execute(Target.java:357)
> [junit] at
org.apache.tools.ant.Target.performTasks(Target.java:
> 385)
> [junit] at
> org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
> [junit] at
> org
> .apache
> .tools
> .ant
> .helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:
> 38)
> [junit] at
> org.apache.tools.ant.Project.executeTargets(Project.java:1181)
> [junit] at
org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
> [junit] at
> org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
> [junit] at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
> [junit] at
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown
> Source)
> [junit] at
> sun
> .reflect
> .DelegatingMethodAccessorImpl
> .invoke(DelegatingMethodAccessorImpl.java:25)
> [junit] at
java.lang.reflect.Method.invoke(Method.java:585)
> [junit] at
> org
> .apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:
> 105)
> [junit] at
org.apache.tools.ant.Task.perform(Task.java:348)
> [junit] at
> org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:62)
> [junit] at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
> [junit] at
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown
> Source)
> [junit] at
> sun
> .reflect
> .DelegatingMethodAccessorImpl
> .invoke(DelegatingMethodAccessorImpl.java:25)
> [junit] at
java.lang.reflect.Method.invoke(Method.java:585)
> [junit] at
> org
> .apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:
> 105)
> [junit] at
org.apache.tools.ant.Task.perform(Task.java:348)
> [junit] at
org.apache.tools.ant.Target.execute(Target.java:357)
> [junit] at
org.apache.tools.ant.Target.performTasks(Target.java:
> 385)
> [junit] at
> org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
> [junit] at
> org.apache.tools.ant.Project.executeTarget(Project.java:1298)
> [junit] at
> org
> .apache
> .tools
> .ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
> [junit] at
> org.apache.tools.ant.Project.executeTargets(Project.java:1181)
> [junit] at
org.apache.tools.ant.Main.runBuild(Main.java:698)
> [junit] at
org.apache.tools.ant.Main.startAnt(Main.java:199)
> [junit] at
> org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
> [junit] at
> org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
> [junit] Running
> org.hibernate.test.instrument.buildtime.InstrumentTest
> [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
> [junit] Test
> org.hibernate.test.instrument.buildtime.InstrumentTest FAILED
> (crashed)
> [taskdef] Could not load definitions from resource clovertasks. It
> could not be found.
>
> instrument.prepare:
>
> splash:
>
> init:
> [echo] Build Hibernate-3.2.5.ga (2007-12-13 11:09:55)
> [echo] JDK version: 1.5
>
> init.antlr:
>
> antlr:
>
> compile:
>
> compiletest:
> [javac] Compiling 9 source files to /zfs/hibernate/core/build/
> testclasses
>
> instrument.javassist:
> [instrument] starting instrumentation
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/CustomBlobType.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.CustomBlobType]; file = file:/
> zfs/hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/CustomBlobType.class
> [instrument] log4j:WARN No appenders could be found for logger
> (org.hibernate.bytecode.javassist.JavassistClassTransformer).
> [instrument] log4j:WARN Please initialize the log4j system properly.
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Document.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Document]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Document.class
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.upperCaseName]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.upperCaseName]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.summary]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.summary]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.text]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.text]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.owner]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.owner]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.folder]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.folder]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.lastTextModification]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Document.lastTextModification]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Entity.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Entity]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Entity.class
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Entity.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Entity.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Entity.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Entity.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Entity.child]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Entity.child]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Entity.sibling]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Entity.sibling]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/
> EntityWithOneToOnes.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes]; file =
> file:/zfs/hibernate/core/build/testclasses/org/hibernate/test/
> instrument/domain/EntityWithOneToOnes.class
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.EntityWithOneToOnes.name]
> [instrument] accepting transformation of field
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneNoProxy]
> [instrument] accepting transformation of field
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneNoProxy]
> [instrument] accepting transformation of field
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneProxy]
> [instrument] accepting transformation of field
> [org
> .hibernate.test.instrument.domain.EntityWithOneToOnes.oneToOneProxy]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Folder.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Folder]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Folder.class
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.parent]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.parent]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.subfolders]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.subfolders]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.documents]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.documents]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.nameWasread]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Folder.nameWasread]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/OneToOneNoProxy.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.OneToOneNoProxy]; file = file:/
> zfs/hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/OneToOneNoProxy.class
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entityId]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entityId]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entity]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneNoProxy.entity]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/OneToOneProxy.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.OneToOneProxy]; file = file:/
> zfs/hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/OneToOneProxy.class
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneProxy.entityId]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneProxy.entityId]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneProxy.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneProxy.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneProxy.entity]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.OneToOneProxy.entity]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Owner.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Owner]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Owner.class
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Owner.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Owner.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Owner.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Owner.name]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Problematic
> $Representation.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Problematic$Representation];
> file = file:/zfs/hibernate/core/build/testclasses/org/hibernate/test/
> instrument/domain/Problematic$Representation.class
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic
> $Representation.bytes]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic
> $Representation.bytes]
> [instrument] Starting class file : file:/zfs/hibernate/core/build/
> testclasses/org/hibernate/test/instrument/domain/Problematic.class
> [instrument] processing class
> [org.hibernate.test.instrument.domain.Problematic]; file = file:/zfs/
> hibernate/core/build/testclasses/org/hibernate/test/instrument/
> domain/Problematic.class
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic.id]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic.name]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic.bytes]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic.bytes]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic.representation]
> [instrument] accepting transformation of field
> [org.hibernate.test.instrument.domain.Problematic.representation]
>
> junit.instrument.javassist:
> [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 9.196
> sec
> [junit] java.io.FileNotFoundException: /zfs/hibernate/core/
> junitvmwatcher1945112681.properties (No such file or directory)
> [junit] at java.io.FileInputStream.open(Native Method)
> [junit] at
java.io.FileInputStream.<init>(FileInputStream.java:
> 106)
> [junit] at java.io.FileReader.<init>(FileReader.java:55)
> [junit] at
> org
> .apache
> .tools
> .ant
> .taskdefs.optional.junit.JUnitTask.executeAsForked(JUnitTask.java:
> 1028)
> [junit] at
> org
> .apache
> .tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:
> 817)
> [junit] at
> org
> .apache
> .tools
> .ant.taskdefs.optional.junit.JUnitTask.executeOrQueue(JUnitTask.java:
> 1657)
> [junit] at
> org
> .apache
> .tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:
> 764)
> [junit] at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
> [junit] at
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown
> Source)
> [junit] at
> sun
> .reflect
> .DelegatingMethodAccessorImpl
> .invoke(DelegatingMethodAccessorImpl.java:25)
> [junit] at
java.lang.reflect.Method.invoke(Method.java:585)
> [junit] at
> org
> .apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:
> 105)
> [junit] at
org.apache.tools.ant.Task.perform(Task.java:348)
> [junit] at
org.apache.tools.ant.Target.execute(Target.java:357)
> [junit] at
org.apache.tools.ant.Target.performTasks(Target.java:
> 385)
> [junit] at
> org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
> [junit] at
> org
> .apache
> .tools
> .ant
> .helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:
> 38)
> [junit] at
> org.apache.tools.ant.Project.executeTargets(Project.java:1181)
> [junit] at
org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
> [junit] at
> org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
> [junit] at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
> [junit] at
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown
> Source)
> [junit] at
> sun
> .reflect
> .DelegatingMethodAccessorImpl
> .invoke(DelegatingMethodAccessorImpl.java:25)
> [junit] at
java.lang.reflect.Method.invoke(Method.java:585)
> [junit] at
> org
> .apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:
> 105)
> [junit] at
org.apache.tools.ant.Task.perform(Task.java:348)
> [junit] at
> org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:62)
> [junit] at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
> [junit] at
sun.reflect.GeneratedMethodAccessor2.invoke(Unknown
> Source)
> [junit] at
> sun
> .reflect
> .DelegatingMethodAccessorImpl
> .invoke(DelegatingMethodAccessorImpl.java:25)
> [junit] at
java.lang.reflect.Method.invoke(Method.java:585)
> [junit] at
> org
> .apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:
> 105)
> [junit] at
org.apache.tools.ant.Task.perform(Task.java:348)
> [junit] at
org.apache.tools.ant.Target.execute(Target.java:357)
> [junit] at
org.apache.tools.ant.Target.performTasks(Target.java:
> 385)
> [junit] at
> org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
> [junit] at
> org.apache.tools.ant.Project.executeTarget(Project.java:1298)
> [junit] at
> org
> .apache
> .tools
> .ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
> [junit] at
> org.apache.tools.ant.Project.executeTargets(Project.java:1181)
> [junit] at
org.apache.tools.ant.Main.runBuild(Main.java:698)
> [junit] at
org.apache.tools.ant.Main.startAnt(Main.java:199)
> [junit] at
> org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
> [junit] at
> org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
> [junit] Running
> org.hibernate.test.instrument.buildtime.InstrumentTest
> [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
> [junit] Test
> org.hibernate.test.instrument.buildtime.InstrumentTest FAILED
> (crashed)
>
> junitreport:
> [mkdir] Created dir: /zfs/hibernate/core/build/test-reports
> [junitreport] Processing /zfs/hibernate/core/build/test-reports/
> TESTS-TestSuites.xml to /var/tmp/null1956478860
> [junitreport] Loading stylesheet jar:file:/opt/JSWsupp/indiv/apache-
> ant-1.7.0/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/
> junit/xsl/junit-frames.xsl
> [junitreport] Transform time: 9653ms
> [junitreport] Deleting: /var/tmp/null1956478860
>
> BUILD SUCCESSFUL
> Total time: 2 minutes 51 seconds
> _______________________________________________
> hibernate-dev mailing list
> hibernate-dev(a)lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
16 years, 11 months
junit test fail
by Julius Stroffek
Hi All,
when I run junit tests on 3.2 branch, some tests fail/have errors:
BidirectionalOneToManyCascadeTest
ASTParserLoadingTest
CriteriaHQLAlignmentTest
HQLTest
EagerKeyManyToOneTest
SQLLoaderTest
ReadOnlyTest
NativeSQLQueriesTest
WhereTest
InstrumentTest
The log file is attached.
Is there an issue or I have mis configured something? I have not changed
anything I just executed
ant
ant junitreport
as described at http://www.hibernate.org/6.html#A5
Thanks for your suggestions.
Cheers
Julo
16 years, 11 months
embed-xml=false leaves you stuck
by Bill Burke
I was looking at the XML mapping support for Hibernate recently and have
some questions/suggestions.
One thing that seriously annoyed me was that if you do not have
embed-xml="true" you can never get access to an association/relationship
in XML format. This means that I cannot have embed-xml="false" and load
the relationship with a fetch join. Is there any particular reason I'm
missing here on why it was implemented in this fashion?
I know you have to worry about circular references, but isn't that
something the user/app developer can worry about instead of Hibernate?
I'll get into later why this is a problem for me...
Bill
--
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com
16 years, 11 months