Dennis Kempin | b59f4ed | 2012-08-09 13:13:10 -0700 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | # Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
| 6 | FILE_PATH=`readlink -f $0` |
| 7 | INSTALL_DIR=`dirname $FILE_PATH` |
| 8 | |
| 9 | TESTS_DIR=$INSTALL_DIR/tests |
| 10 | REPLAY_TOOL=$INSTALL_DIR/replay |
| 11 | FRAMEWORK_DIR=$INSTALL_DIR/framework |
| 12 | |
| 13 | PYTHONPATH=$FRAMEWORK_DIR TESTS_DIR=$TESTS_DIR REPLAY_TOOL=$REPLAY_TOOL \ |
| 14 | python $FRAMEWORK_DIR/main.py $* |