blob: f2d707e41eda6b467f86dc09e6e19ad6fb5477da [file] [log] [blame]
initial.commitf5b16fe2008-07-27 00:20:511#!/bin/sh
2
[email protected]e46cdae2009-08-25 20:59:273# Copyright (c) 2009 The Chromium Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
initial.commitf5b16fe2008-07-27 00:20:517exec_dir=$(dirname $0)
8
[email protected]68d7f6382008-11-12 19:42:249if [ "$OSTYPE" = "cygwin" ]; then
tfarinaa16e8bc2014-10-10 03:11:2910 SCRIPT=$(cygpath -wa "$exec_dir/run_layout_tests.py")
[email protected]68d7f6382008-11-12 19:42:2411else
tfarinaa16e8bc2014-10-10 03:11:2912 SCRIPT="$exec_dir/run_layout_tests.py"
[email protected]68d7f6382008-11-12 19:42:2413fi
14
[email protected]ad951922010-03-31 16:36:4815PYTHON_PROG=python
16unset PYTHONPATH
17
[email protected]4ecbeba62010-03-05 03:32:5718"$PYTHON_PROG" "$SCRIPT" "$@"