summaryrefslogtreecommitdiffstats
path: root/ceee/smoke_test.bat
blob: 03ed5fa6b640bd78f0ada00d9c68d19277b1c2a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo off
REM Copyright (c) 2010 The Chromium Authors. All rights reserved.
REM Use of this source code is governed by a BSD-style license that can be
REM found in the LICENSE file.

IF EXIST "%~p0..\third_party\python_26\python.exe" GOTO usestandard

REM try the built-in Python if we can't find the "standard" Python.
echo Using system installed Python
python "%~p0tools\smoke_test.py" %*
GOTO end

:usestandard
"%~p0..\third_party\python_26\python.exe" "%~p0tools\smoke_test.py" %*

:end