mirror of
https://github.com/SSCLI/sscli_20021101
synced 2026-06-08 12:28:57 +00:00
9fa3874800
Moved the original file to the archive subfolder.
138 lines
4.9 KiB
C#
138 lines
4.9 KiB
C#
// ==++==
|
|
//
|
|
//
|
|
// Copyright (c) 2002 Microsoft Corporation. All rights reserved.
|
|
//
|
|
// The use and distribution terms for this software are contained in the file
|
|
// named license.txt, which can be found in the root of this distribution.
|
|
// By using this software in any fashion, you are agreeing to be bound by the
|
|
// terms of this license.
|
|
//
|
|
// You must not remove this notice, or any other, from this software.
|
|
//
|
|
//
|
|
// ==--==
|
|
using System.IO;
|
|
using System;
|
|
using System.Collections;
|
|
public class Co6005IsSynchronized
|
|
{
|
|
public static String s_strActiveBugNums = "";
|
|
public static String s_strDtTmVer = "";
|
|
public static String s_strClassMethod = "Array.IsSynchronized";
|
|
public static String s_strTFName = "Co6005IsSynchronized";
|
|
public static String s_strTFAbbrev = "Co6005";
|
|
public static String s_strTFPath = "";
|
|
public bool runTest()
|
|
{
|
|
Console.Error.WriteLine(s_strTFPath + " " + s_strTFName + " , for " + s_strClassMethod + " , Source ver " + s_strDtTmVer);
|
|
int iCountErrors = 0;
|
|
int iCountTestcases = 0;
|
|
String strLoc = "Loc_000oo";
|
|
Boolean bSynchronized = false;
|
|
try {
|
|
do
|
|
{
|
|
strLoc = "Loc_01ifs";
|
|
iCountTestcases++;
|
|
short[] in2Arr = new Int16[10];
|
|
bSynchronized = in2Arr.IsSynchronized;
|
|
if(bSynchronized)
|
|
{
|
|
iCountErrors++;
|
|
Console.WriteLine( s_strTFAbbrev+ " ,Err_01ifs! , Array.IsSynchronized failed on single dimension array." );
|
|
}
|
|
strLoc = "Loc_02ifs";
|
|
iCountTestcases++;
|
|
int[] in4Arr = new Int32[0];
|
|
bSynchronized = in4Arr.IsSynchronized;
|
|
if(bSynchronized)
|
|
{
|
|
iCountErrors++;
|
|
Console.WriteLine( s_strTFAbbrev+ " ,Err_02ifs! , Array.IsSynchronized failed on 0 size single dimension array." );
|
|
}
|
|
int[][] i4Arr = new int[3][];
|
|
i4Arr[0] = new int[] {1, 2, 3};
|
|
i4Arr[1] = new int[] {1, 2, 3, 4, 5, 6};
|
|
i4Arr[2] = new int[] {1, 2, 3, 4, 5, 6, 7, 8, 9};
|
|
strLoc = "Loc_03ifx";
|
|
iCountTestcases++;
|
|
bSynchronized = i4Arr.IsSynchronized;
|
|
if(bSynchronized)
|
|
{
|
|
iCountErrors++;
|
|
Console.WriteLine( s_strTFAbbrev+ " ,Err_03ifs! , Array.IsSynchronized failed on jagged array." );
|
|
}
|
|
strLoc = "Loc_04ifx";
|
|
iCountTestcases++;
|
|
Object [][] objArr = new Object[0][];
|
|
bSynchronized = objArr.IsSynchronized;
|
|
if(bSynchronized)
|
|
{
|
|
iCountErrors++;
|
|
Console.WriteLine( s_strTFAbbrev+ " ,Err_04ifs! , Array.IsSynchronized failed on 0 size jagged array." );
|
|
}
|
|
strLoc = "Loc_05ifx";
|
|
iCountTestcases++;
|
|
Double[,] doArr = new Double[99, 78];
|
|
bSynchronized = doArr.IsSynchronized;
|
|
if(bSynchronized)
|
|
{
|
|
iCountErrors++;
|
|
Console.WriteLine( s_strTFAbbrev+ " ,Err_05ifs! , Array.IsSynchronized failed on rectangle array." );
|
|
}
|
|
strLoc = "Loc_06ifx";
|
|
iCountTestcases++;
|
|
Hashtable[,] htArr = new Hashtable[0,0];
|
|
bSynchronized = htArr.IsSynchronized;
|
|
if(bSynchronized)
|
|
{
|
|
iCountErrors++;
|
|
Console.WriteLine( s_strTFAbbrev+ " ,Err_06ifs! , Array.IsSynchronized failed on 0 size rectangle array." );
|
|
}
|
|
strLoc = "Loc_07ifx";
|
|
iCountTestcases++;
|
|
string[,,,,,] strArr = new string[6,5,4,3,2,1];
|
|
bSynchronized = strArr.IsSynchronized;
|
|
if(bSynchronized)
|
|
{
|
|
iCountErrors++;
|
|
Console.WriteLine( s_strTFAbbrev+ " ,Err_07ifs! , Array.IsSynchronized failed on 6 dimensions rectangle array." );
|
|
}
|
|
} while (false);
|
|
} catch (Exception exc_general ) {
|
|
++iCountErrors;
|
|
Console.WriteLine(s_strTFAbbrev +" Error Err_8888yyy! strLoc=="+ strLoc +", exc_general=="+exc_general);
|
|
}
|
|
if ( iCountErrors == 0 )
|
|
{
|
|
Console.Error.WriteLine( "paSs. "+s_strTFPath +" "+s_strTFName+" ,iCountTestcases=="+iCountTestcases);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
Console.Error.WriteLine("FAiL! "+s_strTFPath+" "+s_strTFName+" ,inCountErrors=="+iCountErrors+" , BugNums?: "+s_strActiveBugNums );
|
|
return false;
|
|
}
|
|
}
|
|
public static void Main(String[] args)
|
|
{
|
|
bool bResult = false;
|
|
Co6005IsSynchronized cbA = new Co6005IsSynchronized();
|
|
try {
|
|
bResult = cbA.runTest();
|
|
} catch (Exception exc_main){
|
|
bResult = false;
|
|
Console.WriteLine(s_strTFAbbrev+ "FAiL! Error Err_9999zzz! Uncaught Exception in main(), exc_main=="+exc_main);
|
|
}
|
|
if (!bResult)
|
|
{
|
|
Console.WriteLine(s_strTFName+ s_strTFPath);
|
|
Console.Error.WriteLine( " " );
|
|
Console.Error.WriteLine( "FAiL! "+ s_strTFAbbrev);
|
|
Console.Error.WriteLine( " " );
|
|
}
|
|
if (bResult) Environment.ExitCode = 0; else Environment.ExitCode = 11;
|
|
}
|
|
}
|