js/src/tests/test262/ch07/7.6/S7.6_A4.2_T2.js

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 // Copyright 2009 the Sputnik authors. All rights reserved.
michael@0 2 // This code is governed by the BSD license found in the LICENSE file.
michael@0 3
michael@0 4 /**
michael@0 5 * Correct interpretation of RUSSIAN ALPHABET
michael@0 6 *
michael@0 7 * @path ch07/7.6/S7.6_A4.2_T2.js
michael@0 8 * @description Check RUSSIAN SMALL ALPHABET
michael@0 9 */
michael@0 10
michael@0 11 //CHECK#а-я
michael@0 12 var \u0430 = 1;
michael@0 13 if (а !== 1) {
michael@0 14 $ERROR('#а');
michael@0 15 }
michael@0 16 var \u0431 = 1;
michael@0 17 if (б !== 1) {
michael@0 18 $ERROR('#б');
michael@0 19 }
michael@0 20 var \u0432 = 1;
michael@0 21 if (в !== 1) {
michael@0 22 $ERROR('#в');
michael@0 23 }
michael@0 24 var \u0433 = 1;
michael@0 25 if (г !== 1) {
michael@0 26 $ERROR('#г');
michael@0 27 }
michael@0 28 var \u0434 = 1;
michael@0 29 if (д !== 1) {
michael@0 30 $ERROR('#д');
michael@0 31 }
michael@0 32 var \u0435 = 1;
michael@0 33 if (е !== 1) {
michael@0 34 $ERROR('#е');
michael@0 35 }
michael@0 36 var \u0436 = 1;
michael@0 37 if (ж !== 1) {
michael@0 38 $ERROR('#ж');
michael@0 39 }
michael@0 40 var \u0437 = 1;
michael@0 41 if (з !== 1) {
michael@0 42 $ERROR('#з');
michael@0 43 }
michael@0 44 var \u0438 = 1;
michael@0 45 if (и !== 1) {
michael@0 46 $ERROR('#и');
michael@0 47 }
michael@0 48 var \u0439 = 1;
michael@0 49 if (й !== 1) {
michael@0 50 $ERROR('#й');
michael@0 51 }
michael@0 52 var \u043A = 1;
michael@0 53 if (к !== 1) {
michael@0 54 $ERROR('#к');
michael@0 55 }
michael@0 56 var \u043B = 1;
michael@0 57 if (л !== 1) {
michael@0 58 $ERROR('#л');
michael@0 59 }
michael@0 60 var \u043C = 1;
michael@0 61 if (м !== 1) {
michael@0 62 $ERROR('#м');
michael@0 63 }
michael@0 64 var \u043D = 1;
michael@0 65 if (н !== 1) {
michael@0 66 $ERROR('#н');
michael@0 67 }
michael@0 68 var \u043E = 1;
michael@0 69 if (о !== 1) {
michael@0 70 $ERROR('#о');
michael@0 71 }
michael@0 72 var \u043F = 1;
michael@0 73 if (п !== 1) {
michael@0 74 $ERROR('#п');
michael@0 75 }
michael@0 76 var \u0440 = 1;
michael@0 77 if (р !== 1) {
michael@0 78 $ERROR('#р');
michael@0 79 }
michael@0 80 var \u0441 = 1;
michael@0 81 if (с !== 1) {
michael@0 82 $ERROR('#с');
michael@0 83 }
michael@0 84 var \u0442 = 1;
michael@0 85 if (т !== 1) {
michael@0 86 $ERROR('#т');
michael@0 87 }
michael@0 88 var \u0443 = 1;
michael@0 89 if (у !== 1) {
michael@0 90 $ERROR('#у');
michael@0 91 }
michael@0 92 var \u0444 = 1;
michael@0 93 if (ф !== 1) {
michael@0 94 $ERROR('#ф');
michael@0 95 }
michael@0 96 var \u0445 = 1;
michael@0 97 if (х !== 1) {
michael@0 98 $ERROR('#х');
michael@0 99 }
michael@0 100 var \u0446 = 1;
michael@0 101 if (ц !== 1) {
michael@0 102 $ERROR('#ц');
michael@0 103 }
michael@0 104 var \u0447 = 1;
michael@0 105 if (ч !== 1) {
michael@0 106 $ERROR('#ч');
michael@0 107 }
michael@0 108 var \u0448 = 1;
michael@0 109 if (ш !== 1) {
michael@0 110 $ERROR('#ш');
michael@0 111 }
michael@0 112 var \u0449 = 1;
michael@0 113 if (щ !== 1) {
michael@0 114 $ERROR('#щ');
michael@0 115 }
michael@0 116 var \u044A = 1;
michael@0 117 if (ъ !== 1) {
michael@0 118 $ERROR('#ъ');
michael@0 119 }
michael@0 120 var \u044B = 1;
michael@0 121 if (ы !== 1) {
michael@0 122 $ERROR('#ы');
michael@0 123 }
michael@0 124 var \u044C = 1;
michael@0 125 if (ь !== 1) {
michael@0 126 $ERROR('#ь');
michael@0 127 }
michael@0 128 var \u044D = 1;
michael@0 129 if (э !== 1) {
michael@0 130 $ERROR('#э');
michael@0 131 }
michael@0 132 var \u044E = 1;
michael@0 133 if (ю !== 1) {
michael@0 134 $ERROR('#ю');
michael@0 135 }
michael@0 136 var \u044F = 1;
michael@0 137 if (я !== 1) {
michael@0 138 $ERROR('#я');
michael@0 139 }
michael@0 140 var \u0451 = 1;
michael@0 141 if (ё !== 1) {
michael@0 142 $ERROR('#ё');
michael@0 143 }
michael@0 144

mercurial