aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/SyncTest.java
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2016-09-30 16:24:48 +0000
committerAndrew Haley <aph@gcc.gnu.org>2016-09-30 16:24:48 +0000
commit07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch)
tree3f22b3241c513ad168c8353805614ae1249410f4 /libjava/testsuite/libjava.lang/SyncTest.java
parenteae993948bae8b788c53772bcb9217c063716f93 (diff)
downloadgcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.zip
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.bz2
Makefile.def: Remove libjava.
2016-09-30 Andrew Haley <aph@redhat.com> * Makefile.def: Remove libjava. * Makefile.tpl: Likewise. * Makefile.in: Regenerate. * configure.ac: Likewise. * configure: Likewise. * gcc/java: Remove. * libjava: Likewise. From-SVN: r240662
Diffstat (limited to 'libjava/testsuite/libjava.lang/SyncTest.java')
-rw-r--r--libjava/testsuite/libjava.lang/SyncTest.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/libjava/testsuite/libjava.lang/SyncTest.java b/libjava/testsuite/libjava.lang/SyncTest.java
deleted file mode 100644
index 85573f8..0000000
--- a/libjava/testsuite/libjava.lang/SyncTest.java
+++ /dev/null
@@ -1,34 +0,0 @@
-// Test atomic increment via synchronized blocks.
-public class SyncTest implements Runnable {
- static int counter;
-
- public void run() {
- // We cache the .class value; otherwise this code is
- // slow enough that it will time out in some situations.
- Object lock = SyncTest.class;
- for (int n = 0; n < 1000000; n++)
- synchronized (lock) {
- counter++;
- }
- }
-
- public static void main(String[] args) {
- SyncTest test = new SyncTest();
- Thread[] thr = new Thread[4];
-
- for (int n = 0; n < thr.length; n++) {
- thr[n] = new Thread(test);
- thr[n].start();
- }
-
- for (int n = 0; n < thr.length; n++) {
- try {
- thr[n].join();
- } catch (InterruptedException ex) {
- }
- }
-
- System.out.println(counter == 1000000 * thr.length ?
- "ok" : "fail: " + counter);
- }
-}