37
|
1 |
@echo off
|
|
2 |
rem
|
|
3 |
rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
4 |
rem All rights reserved.
|
|
5 |
rem This component and the accompanying materials are made available
|
|
6 |
rem under the terms of "Eclipse Public License v1.0"
|
|
7 |
rem which accompanies this distribution, and is available
|
|
8 |
rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
9 |
rem
|
|
10 |
rem Initial Contributors:
|
|
11 |
rem Nokia Corporation - initial contribution.
|
|
12 |
rem
|
|
13 |
rem Contributors:
|
|
14 |
rem
|
|
15 |
rem Description:
|
|
16 |
rem
|
|
17 |
@echo off
|
|
18 |
|
|
19 |
if "%1"=="winscw" (
|
|
20 |
call runtest.cmd ut_bubbleutils
|
|
21 |
call runtest.cmd ut_bubbleheader
|
|
22 |
call runtest.cmd ut_bubbleconferenceheader
|
|
23 |
call runtest.cmd ut_bubblepartlistmodel
|
|
24 |
call runtest.cmd ut_bubblecontainerwidget
|
|
25 |
call runtest.cmd ut_bubbleheadingwidget
|
|
26 |
call runtest.cmd ut_bubbleimagewidget
|
|
27 |
call runtest.cmd ut_bubbleparticipantlistitem
|
|
28 |
rem call runtest.cmd mt_bubblemanager2
|
|
29 |
)
|
|
30 |
|
|
31 |
@echo off
|
|
32 |
if "%1"=="win32" (
|
|
33 |
call runtest_w32.cmd ut_bubbleutils
|
|
34 |
call runtest_w32.cmd ut_bubbleheader
|
|
35 |
call runtest_w32.cmd ut_bubbleconferenceheader
|
|
36 |
call runtest_w32.cmd ut_bubblepartlistmodel
|
|
37 |
call runtest_w32.cmd ut_bubblecontainerwidget
|
|
38 |
call runtest_w32.cmd ut_bubbleheadingwidget
|
|
39 |
call runtest_w32.cmd ut_bubbleimagewidget
|
|
40 |
call runtest_w32.cmd ut_bubbleparticipantlistitem
|
|
41 |
rem call runtest_w32.cmd mt_bubblemanager2
|
|
42 |
)
|
|
43 |
|
|
44 |
@echo off
|
|
45 |
if "%2"=="ctc" (
|
|
46 |
call ctcpost^
|
|
47 |
ut_bubbleutils\mon.sym ut_bubbleutils\mon.dat^
|
|
48 |
ut_bubbleheader\mon.sym ut_bubbleheader\mon.dat^
|
|
49 |
ut_bubbleconferenceheader\mon.sym ut_bubbleconferenceheader\mon.dat^
|
|
50 |
ut_bubblepartlistmodel\mon.sym ut_bubblepartlistmodel\mon.dat^
|
|
51 |
ut_bubblecontainerwidget\mon.sym ut_bubblecontainerwidget\mon.dat^
|
|
52 |
ut_bubbleheadingwidget\mon.sym ut_bubbleheadingwidget\mon.dat^
|
|
53 |
ut_bubbleimagewidget\mon.sym ut_bubbleimagewidget\mon.dat^
|
|
54 |
ut_bubbleparticipantlistitem\mon.sym ut_bubbleparticipantlistitem\mon.dat^
|
|
55 |
ut_bubbleanimiconitem\mon.sym ut_bubbleanimiconitem\mon.dat^
|
|
56 |
-p profile.txt
|
|
57 |
call ctc2html -i profile.txt
|
|
58 |
)
|
|
59 |
|
|
60 |
@echo off
|
|
61 |
if "%1"=="" echo Usage: 'runall winscw' or 'runall win32'
|
|
62 |
|