|
1 @rem |
|
2 @rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 @rem All rights reserved. |
|
4 @rem This component and the accompanying materials are made available |
|
5 @rem under the terms of "Eclipse Public License v1.0" |
|
6 @rem which accompanies this distribution, and is available |
|
7 @rem at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 @rem |
|
9 @rem Initial Contributors: |
|
10 @rem Nokia Corporation - initial contribution. |
|
11 @rem |
|
12 @rem Contributors: |
|
13 @rem |
|
14 @rem Description: |
|
15 @rem |
|
16 @echo off |
|
17 goto b%1 |
|
18 :b |
|
19 :bdeb |
|
20 set _where_=\Epoc32\Release\WINS\DEB |
|
21 goto doit |
|
22 :brel |
|
23 set _where_=\Epoc32\Release\WINS\REL |
|
24 goto doit |
|
25 :budeb |
|
26 set _where_=\Epoc32\Release\WINS\UDEB |
|
27 goto doit |
|
28 :burel |
|
29 set _where_=\Epoc32\Release\WINS\UREL |
|
30 :doit |
|
31 |
|
32 echo \STDLIB\TSTLIB\STDLIB2K... |
|
33 %_where_%\ESTLIB2K |
|
34 if errorlevel 1 pause |
|
35 |
|
36 echo \STDLIB\TSTLIB\TTIME... |
|
37 %_where_%\TTIME |
|
38 if errorlevel 1 pause |
|
39 |
|
40 echo \STDLIB\TSTLIB\TFILES... |
|
41 %_where_%\TFILES |
|
42 if errorlevel 1 pause |
|
43 |
|
44 echo \STDLIB\TSTLIB\THELLO... |
|
45 %_where_%\THELLO |
|
46 if errorlevel 1 pause |
|
47 |
|
48 echo \STDLIB\TSTLIB\TMISC... |
|
49 %_where_%\TMISC |
|
50 if errorlevel 1 pause |
|
51 |
|
52 echo \STDLIB\TSTLIB\TMISC2... |
|
53 %_where_%\TMISC2 |
|
54 if errorlevel 1 pause |
|
55 |
|
56 echo \STDLIB\TSTLIB\TDIRS... |
|
57 %_where_%\TDIRS |
|
58 if errorlevel 1 pause |
|
59 |
|
60 echo \STDLIB\TSTLIB\TMTHREAD... |
|
61 %_where_%\TMTHREAD |
|
62 if errorlevel 1 pause |
|
63 |
|
64 REM echo \STDLIB\TSTLIB\TLSTREAM... |
|
65 REM %_where_%\TLSTREAM |
|
66 REM if errorlevel 1 pause |
|
67 |
|
68 echo \STDLIB\TSTLIB\TISTREAM... |
|
69 %_where_%\TISTREAM |
|
70 if errorlevel 1 pause |
|
71 |
|
72 echo \STDLIB\TSTLIB\TPIPE2... |
|
73 %_where_%\TPIPE2 |
|
74 if errorlevel 1 pause |
|
75 |
|
76 echo \STDLIB\TSTLIB\TCANCEL... |
|
77 %_where_%\TCANCEL |
|
78 if errorlevel 1 pause |
|
79 |
|
80 echo \STDLIB\TSTLIB\TWFILES... |
|
81 %_where_%\TWFILES |
|
82 if errorlevel 1 pause |
|
83 |
|
84 echo \STDLIB\TSTLIB\TWDIRS... |
|
85 %_where_%\TWDIRS |
|
86 if errorlevel 1 pause |
|
87 |
|
88 set _where_= |
|
89 |