This commit is contained in:
Michael Bebenita 2015-05-16 18:33:57 -07:00
Родитель d4e7c612aa
Коммит 0c37e8011a
2 изменённых файлов: 54 добавлений и 1 удалений

Просмотреть файл

@ -167,6 +167,7 @@ public class ShellTestlets {
"gnu/testlet/java/lang/Math/cos",
"gnu/testlet/java/lang/Math/sin",
"gnu/testlet/java/util/Vector/copyInto",
"gnu/testlet/java/lang/Thread/sleep",
null
};
@ -204,7 +205,6 @@ public class ShellTestlets {
// "gnu/testlet/java/lang/Thread/name",
// "gnu/testlet/java/lang/Thread/priority",
// "gnu/testlet/java/lang/Thread/wait",
// "gnu/testlet/vm/FieldNotFoundException",
// "gnu/testlet/vm/InterfaceTest",
// "gnu/testlet/vm/MethodNotFoundException",

Просмотреть файл

@ -0,0 +1,53 @@
// Tags: JDK1.0
// Copyright (C) 2002 Free Software Foundation, Inc.
// Written by Mark Wielaard (mark@klomp.org)
// This file is part of Mauve.
// Mauve is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2, or (at your option)
// any later version.
// Mauve 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 for more details.
// You should have received a copy of the GNU General Public License
// along with Mauve; see the file COPYING. If not, write to
// the Free Software Foundation, 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA. */
package gnu.testlet.java.lang.Thread;
import gnu.testlet.Testlet;
import gnu.testlet.TestHarness;
import com.sun.cldchi.jvm.JVM;
public class sleep extends Thread implements Testlet
{
public int getExpectedPass() { return 1; }
public int getExpectedFail() { return 0; }
public int getExpectedKnownFail() { return 0; }
public void test (TestHarness harness)
{
long start = JVM.monotonicTimeMillis();
try {
Thread.sleep(100);
Thread.sleep(100);
Thread.sleep(100);
Thread.sleep(100);
Thread.sleep(100);
harness.check((JVM.monotonicTimeMillis() - start) > 200, "Not sleeping: " + (JVM.monotonicTimeMillis() - start));
} catch (InterruptedException e) {
}
}
}