/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
* @summary Basic functional test of reference objects
* @author Mark Reinhold
*/
public class Basic {
static ReferenceQueue q = new ReferenceQueue();
static boolean finalized = false;
public static class ClearFinalizerThread {
protected void finalize() {
}
};
protected void finalize() {
}
public static class Sub { };
t.start();
t.join();
}
public void run() {
}
});
}
public void run() {
}
});
}
public void run() {
rw = new WeakReference(s, q);
rw2 = new WeakReference(s);
rp = new PhantomReference(s, q);
s = null;
}
});
int ndq = 0;
boolean prevFinalized = false;
for (int i = 1;; i++) {
Reference r;
createNoise();
}
/* Cause a dummy object to be finalized, since the finalizer thread
might retain a reference to the Basic instance after it's been
finalized (this happens with java_g) */
public void run() {
new ClearFinalizerThread();
}});
prevFinalized = true;
}
ndq++;
if (r != null) {
}
}
if (i >= 10) break;
}
if (ndq != 3) {
throw new Exception("Expected to dequeue 3 reference objects,"
+ " but only got " + ndq);
}
throw new Exception("Test object not finalized");
}
}
}