587
|
1 |
@echo off
|
|
2 |
|
|
3 |
rem
|
|
4 |
rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
5 |
rem All rights reserved.
|
|
6 |
rem This component and the accompanying materials are made available
|
|
7 |
rem under the terms of the License "Eclipse Public License v1.0"
|
|
8 |
rem which accompanies this distribution, and is available
|
|
9 |
rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
10 |
rem
|
|
11 |
rem Initial Contributors:
|
|
12 |
rem Nokia Corporation - initial contribution.
|
|
13 |
rem
|
|
14 |
rem Contributors:
|
|
15 |
rem
|
|
16 |
rem Description:
|
|
17 |
rem
|
|
18 |
|
|
19 |
"%JAVA_HOME%\bin\java" -cp "./../../bin/helium-checktools.jar" com.nokia.helium.checktools.HeliumToolsCheckerMain -config "./tests/config/helium.basic.tools.config"
|
|
20 |
|
|
21 |
IF (%ERRORLEVEL% == 0) GOTO :ok
|
|
22 |
IF (%ERRORLEVEL% == -1) GOTO :errorstop
|
|
23 |
|
|
24 |
:ok
|
|
25 |
GOTO :end
|
|
26 |
|
|
27 |
:errorstop
|
|
28 |
echo *** Build aborted with error
|
|
29 |
exit /b 1
|
|
30 |
|
|
31 |
:end |