blob: 080da751069d01ea8a196103cea2d5a23d3e2417 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function test(v)
{
v = v.substring(7,15);
switch (v)
{
case "string0s":
WScript.Echo("string0s");
break;
case "string1s":
WScript.Echo("string1s");
break;
case "string2s":
WScript.Echo("string2s");
break;
case "string3s":
WScript.Echo("string3s");
break;
case "string4s":
WScript.Echo("string4s");
break;
default:
WScript.Echo("ERROR: " + v);
break;
};
}
for (var i = 0; i < 5; i++)
{
test("prefix_string" + i + "suffix");
}