New test code.
From-SVN: r32336
This commit is contained in:
committed by
Anthony Green
parent
7470e8d74c
commit
da1ee10da1
@@ -0,0 +1,34 @@
|
||||
public class PR160
|
||||
{
|
||||
static final int len = 100;
|
||||
|
||||
public static void main(String args[])
|
||||
{
|
||||
|
||||
double[] a = new double[len];
|
||||
double[] b = new double[len];
|
||||
|
||||
for (int i = 0; i < len ; i++)
|
||||
{
|
||||
a[i] = 0.65;
|
||||
}
|
||||
|
||||
System.arraycopy(a, 0, b, 0, len);
|
||||
|
||||
boolean errors = false;
|
||||
|
||||
for (int i = 0; i < len ; i++)
|
||||
{
|
||||
if (a[i] != b[i])
|
||||
{
|
||||
System.out.println("ERROR! " + a[i] + " != "
|
||||
+ b[i] + " at index " + i);
|
||||
errors = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!errors)
|
||||
System.out.println("ok");
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user