author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
sl@0 | 2 |
// All rights reserved. |
sl@0 | 3 |
// This component and the accompanying materials are made available |
sl@0 | 4 |
// under the terms of the License "Eclipse Public License v1.0" |
sl@0 | 5 |
// which accompanies this distribution, and is available |
sl@0 | 6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html". |
sl@0 | 7 |
// |
sl@0 | 8 |
// Initial Contributors: |
sl@0 | 9 |
// Nokia Corporation - initial contribution. |
sl@0 | 10 |
// |
sl@0 | 11 |
// Contributors: |
sl@0 | 12 |
// |
sl@0 | 13 |
// Description: |
sl@0 | 14 |
// e32test\dll\t_xver2.cpp |
sl@0 | 15 |
// |
sl@0 | 16 |
// |
sl@0 | 17 |
|
sl@0 | 18 |
#include <e32test.h> |
sl@0 | 19 |
#include "t_ver2.h" |
sl@0 | 20 |
|
sl@0 | 21 |
RTest test(_L("T_XVER2")); |
sl@0 | 22 |
|
sl@0 | 23 |
|
sl@0 | 24 |
TInt E32Main() |
sl@0 | 25 |
{ |
sl@0 | 26 |
test.Title(); |
sl@0 | 27 |
|
sl@0 | 28 |
TUint ver = (TUint)Export01(); |
sl@0 | 29 |
test.Printf(_L("Version %d.%d\n"), ver>>16, ver&0xffff); |
sl@0 | 30 |
|
sl@0 | 31 |
#if defined(__USE02__) |
sl@0 | 32 |
test.Printf(_L("Test 2\n")); |
sl@0 | 33 |
test(Export02() == 2*2); |
sl@0 | 34 |
#endif |
sl@0 | 35 |
#if defined(__USE03__) |
sl@0 | 36 |
test.Printf(_L("Test 3\n")); |
sl@0 | 37 |
test(Export03() == 3*3); |
sl@0 | 38 |
#endif |
sl@0 | 39 |
#if defined(__USE04__) |
sl@0 | 40 |
test.Printf(_L("Test 4\n")); |
sl@0 | 41 |
test(Export04() == 4*4); |
sl@0 | 42 |
#endif |
sl@0 | 43 |
#if defined(__USE05__) |
sl@0 | 44 |
test.Printf(_L("Test 5\n")); |
sl@0 | 45 |
test(Export05() == 5*5); |
sl@0 | 46 |
#endif |
sl@0 | 47 |
#if defined(__USE06__) |
sl@0 | 48 |
test.Printf(_L("Test 6\n")); |
sl@0 | 49 |
test(Export06() == 6*6); |
sl@0 | 50 |
#endif |
sl@0 | 51 |
#if defined(__USE07__) |
sl@0 | 52 |
test.Printf(_L("Test 7\n")); |
sl@0 | 53 |
test(Export07() == 7*7); |
sl@0 | 54 |
#endif |
sl@0 | 55 |
#if defined(__USE08__) |
sl@0 | 56 |
test.Printf(_L("Test 8\n")); |
sl@0 | 57 |
test(Export08() == 8*8); |
sl@0 | 58 |
#endif |
sl@0 | 59 |
#if defined(__USE09__) |
sl@0 | 60 |
test.Printf(_L("Test 9\n")); |
sl@0 | 61 |
test(Export09() == 9*9); |
sl@0 | 62 |
#endif |
sl@0 | 63 |
#if defined(__USE10__) |
sl@0 | 64 |
test.Printf(_L("Test 10\n")); |
sl@0 | 65 |
test(Export10() == 10*10); |
sl@0 | 66 |
#endif |
sl@0 | 67 |
#if defined(__USE11__) |
sl@0 | 68 |
test.Printf(_L("Test 11\n")); |
sl@0 | 69 |
test(Export11() == 11*11); |
sl@0 | 70 |
#endif |
sl@0 | 71 |
#if defined(__USE12__) |
sl@0 | 72 |
test.Printf(_L("Test 12\n")); |
sl@0 | 73 |
test(Export12() == 12*12); |
sl@0 | 74 |
#endif |
sl@0 | 75 |
#if defined(__USE13__) |
sl@0 | 76 |
test.Printf(_L("Test 13\n")); |
sl@0 | 77 |
test(Export13() == 13*13); |
sl@0 | 78 |
#endif |
sl@0 | 79 |
#if defined(__USE14__) |
sl@0 | 80 |
test.Printf(_L("Test 14\n")); |
sl@0 | 81 |
test(Export14() == 14*14); |
sl@0 | 82 |
#endif |
sl@0 | 83 |
#if defined(__USE15__) |
sl@0 | 84 |
test.Printf(_L("Test 15\n")); |
sl@0 | 85 |
test(Export15() == 15*15); |
sl@0 | 86 |
#endif |
sl@0 | 87 |
#if defined(__USE16__) |
sl@0 | 88 |
test.Printf(_L("Test 16\n")); |
sl@0 | 89 |
test(Export16() == 16*16); |
sl@0 | 90 |
#endif |
sl@0 | 91 |
#if defined(__USE17__) |
sl@0 | 92 |
test.Printf(_L("Test 17\n")); |
sl@0 | 93 |
test(Export17() == 17*17); |
sl@0 | 94 |
#endif |
sl@0 | 95 |
#if defined(__USE18__) |
sl@0 | 96 |
test.Printf(_L("Test 18\n")); |
sl@0 | 97 |
test(Export18() == 18*18); |
sl@0 | 98 |
#endif |
sl@0 | 99 |
#if defined(__USE19__) |
sl@0 | 100 |
test.Printf(_L("Test 19\n")); |
sl@0 | 101 |
test(Export19() == 19*19); |
sl@0 | 102 |
#endif |
sl@0 | 103 |
#if defined(__USE20__) |
sl@0 | 104 |
test.Printf(_L("Test 20\n")); |
sl@0 | 105 |
test(Export20() == 20*20); |
sl@0 | 106 |
#endif |
sl@0 | 107 |
#if defined(__USE21__) |
sl@0 | 108 |
test.Printf(_L("Test 21\n")); |
sl@0 | 109 |
test(Export21() == 21*21); |
sl@0 | 110 |
#endif |
sl@0 | 111 |
#if defined(__USE22__) |
sl@0 | 112 |
test.Printf(_L("Test 22\n")); |
sl@0 | 113 |
test(Export22() == 22*22); |
sl@0 | 114 |
#endif |
sl@0 | 115 |
#if defined(__USE23__) |
sl@0 | 116 |
test.Printf(_L("Test 23\n")); |
sl@0 | 117 |
test(Export23() == 23*23); |
sl@0 | 118 |
#endif |
sl@0 | 119 |
#if defined(__USE24__) |
sl@0 | 120 |
test.Printf(_L("Test 24\n")); |
sl@0 | 121 |
test(Export24() == 24*24); |
sl@0 | 122 |
#endif |
sl@0 | 123 |
#if defined(__USE25__) |
sl@0 | 124 |
test.Printf(_L("Test 25\n")); |
sl@0 | 125 |
test(Export25() == 25*25); |
sl@0 | 126 |
#endif |
sl@0 | 127 |
#if defined(__USE26__) |
sl@0 | 128 |
test.Printf(_L("Test 26\n")); |
sl@0 | 129 |
test(Export26() == 26*26); |
sl@0 | 130 |
#endif |
sl@0 | 131 |
#if defined(__USE27__) |
sl@0 | 132 |
test.Printf(_L("Test 27\n")); |
sl@0 | 133 |
test(Export27() == 27*27); |
sl@0 | 134 |
#endif |
sl@0 | 135 |
#if defined(__USE28__) |
sl@0 | 136 |
test.Printf(_L("Test 28\n")); |
sl@0 | 137 |
test(Export28() == 28*28); |
sl@0 | 138 |
#endif |
sl@0 | 139 |
#if defined(__USE29__) |
sl@0 | 140 |
test.Printf(_L("Test 29\n")); |
sl@0 | 141 |
test(Export29() == 29*29); |
sl@0 | 142 |
#endif |
sl@0 | 143 |
#if defined(__USE30__) |
sl@0 | 144 |
test.Printf(_L("Test 30\n")); |
sl@0 | 145 |
test(Export30() == 30*30); |
sl@0 | 146 |
#endif |
sl@0 | 147 |
#if defined(__USE31__) |
sl@0 | 148 |
test.Printf(_L("Test 31\n")); |
sl@0 | 149 |
test(Export31() == 31*31); |
sl@0 | 150 |
#endif |
sl@0 | 151 |
#if defined(__USE32__) |
sl@0 | 152 |
test.Printf(_L("Test 32\n")); |
sl@0 | 153 |
test(Export32() == 32*32); |
sl@0 | 154 |
#endif |
sl@0 | 155 |
#if defined(__USE33__) |
sl@0 | 156 |
test.Printf(_L("Test 33\n")); |
sl@0 | 157 |
test(Export33() == 33*33); |
sl@0 | 158 |
#endif |
sl@0 | 159 |
#if defined(__USE34__) |
sl@0 | 160 |
test.Printf(_L("Test 34\n")); |
sl@0 | 161 |
test(Export34() == 34*34); |
sl@0 | 162 |
#endif |
sl@0 | 163 |
#if defined(__USE35__) |
sl@0 | 164 |
test.Printf(_L("Test 35\n")); |
sl@0 | 165 |
test(Export35() == 35*35); |
sl@0 | 166 |
#endif |
sl@0 | 167 |
#if defined(__USE36__) |
sl@0 | 168 |
test.Printf(_L("Test 36\n")); |
sl@0 | 169 |
test(Export36() == 36*36); |
sl@0 | 170 |
#endif |
sl@0 | 171 |
#if defined(__USE37__) |
sl@0 | 172 |
test.Printf(_L("Test 37\n")); |
sl@0 | 173 |
test(Export37() == 37*37); |
sl@0 | 174 |
#endif |
sl@0 | 175 |
#if defined(__USE38__) |
sl@0 | 176 |
test.Printf(_L("Test 38\n")); |
sl@0 | 177 |
test(Export38() == 38*38); |
sl@0 | 178 |
#endif |
sl@0 | 179 |
#if defined(__USE39__) |
sl@0 | 180 |
test.Printf(_L("Test 39\n")); |
sl@0 | 181 |
test(Export39() == 39*39); |
sl@0 | 182 |
#endif |
sl@0 | 183 |
#if defined(__USE40__) |
sl@0 | 184 |
test.Printf(_L("Test 40\n")); |
sl@0 | 185 |
test(Export40() == 40*40); |
sl@0 | 186 |
#endif |
sl@0 | 187 |
#if defined(__USE41__) |
sl@0 | 188 |
test.Printf(_L("Test 41\n")); |
sl@0 | 189 |
test(Export41() == 41*41); |
sl@0 | 190 |
#endif |
sl@0 | 191 |
#if defined(__USE42__) |
sl@0 | 192 |
test.Printf(_L("Test 42\n")); |
sl@0 | 193 |
test(Export42() == 42*42); |
sl@0 | 194 |
#endif |
sl@0 | 195 |
#if defined(__USE43__) |
sl@0 | 196 |
test.Printf(_L("Test 43\n")); |
sl@0 | 197 |
test(Export43() == 43*43); |
sl@0 | 198 |
#endif |
sl@0 | 199 |
#if defined(__USE44__) |
sl@0 | 200 |
test.Printf(_L("Test 44\n")); |
sl@0 | 201 |
test(Export44() == 44*44); |
sl@0 | 202 |
#endif |
sl@0 | 203 |
#if defined(__USE45__) |
sl@0 | 204 |
test.Printf(_L("Test 45\n")); |
sl@0 | 205 |
test(Export45() == 45*45); |
sl@0 | 206 |
#endif |
sl@0 | 207 |
#if defined(__USE46__) |
sl@0 | 208 |
test.Printf(_L("Test 46\n")); |
sl@0 | 209 |
test(Export46() == 46*46); |
sl@0 | 210 |
#endif |
sl@0 | 211 |
#if defined(__USE47__) |
sl@0 | 212 |
test.Printf(_L("Test 47\n")); |
sl@0 | 213 |
test(Export47() == 47*47); |
sl@0 | 214 |
#endif |
sl@0 | 215 |
#if defined(__USE48__) |
sl@0 | 216 |
test.Printf(_L("Test 48\n")); |
sl@0 | 217 |
test(Export48() == 48*48); |
sl@0 | 218 |
#endif |
sl@0 | 219 |
#if defined(__USE49__) |
sl@0 | 220 |
test.Printf(_L("Test 49\n")); |
sl@0 | 221 |
test(Export49() == 49*49); |
sl@0 | 222 |
#endif |
sl@0 | 223 |
#if defined(__USE50__) |
sl@0 | 224 |
test.Printf(_L("Test 50\n")); |
sl@0 | 225 |
test(Export50() == 50*50); |
sl@0 | 226 |
#endif |
sl@0 | 227 |
#if defined(__USE51__) |
sl@0 | 228 |
test.Printf(_L("Test 51\n")); |
sl@0 | 229 |
test(Export51() == 51*51); |
sl@0 | 230 |
#endif |
sl@0 | 231 |
#if defined(__USE52__) |
sl@0 | 232 |
test.Printf(_L("Test 52\n")); |
sl@0 | 233 |
test(Export52() == 52*52); |
sl@0 | 234 |
#endif |
sl@0 | 235 |
#if defined(__USE53__) |
sl@0 | 236 |
test.Printf(_L("Test 53\n")); |
sl@0 | 237 |
test(Export53() == 53*53); |
sl@0 | 238 |
#endif |
sl@0 | 239 |
#if defined(__USE54__) |
sl@0 | 240 |
test.Printf(_L("Test 54\n")); |
sl@0 | 241 |
test(Export54() == 54*54); |
sl@0 | 242 |
#endif |
sl@0 | 243 |
#if defined(__USE55__) |
sl@0 | 244 |
test.Printf(_L("Test 55\n")); |
sl@0 | 245 |
test(Export55() == 55*55); |
sl@0 | 246 |
#endif |
sl@0 | 247 |
#if defined(__USE56__) |
sl@0 | 248 |
test.Printf(_L("Test 56\n")); |
sl@0 | 249 |
test(Export56() == 56*56); |
sl@0 | 250 |
#endif |
sl@0 | 251 |
#if defined(__USE57__) |
sl@0 | 252 |
test.Printf(_L("Test 57\n")); |
sl@0 | 253 |
test(Export57() == 57*57); |
sl@0 | 254 |
#endif |
sl@0 | 255 |
#if defined(__USE58__) |
sl@0 | 256 |
test.Printf(_L("Test 58\n")); |
sl@0 | 257 |
test(Export58() == 58*58); |
sl@0 | 258 |
#endif |
sl@0 | 259 |
#if defined(__USE59__) |
sl@0 | 260 |
test.Printf(_L("Test 59\n")); |
sl@0 | 261 |
test(Export59() == 59*59); |
sl@0 | 262 |
#endif |
sl@0 | 263 |
|
sl@0 | 264 |
return ver; |
sl@0 | 265 |
} |