Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 ###################### Set up enviroment variables. ##################### | |
| 2 ##!/bin/bash | |
| 3 # | |
| 4 ## Notice: | |
| 5 ## Source this script to setup the PYTHONPATH and other environment settings for | |
| 6 ## pulling data from ClusterFuzz through App Engine Remote API. Command: | |
| 7 ## source setup_enviroments.sh | |
| 8 ## . setup_enviroments.sh | |
|
wrengr
2016/10/05 18:41:58
should be "setup_environment"; the plural is weird
Sharu Jiang
2016/10/06 18:16:56
This is the practice I used in delta test in clust
wrengr
2016/10/06 19:20:08
That makes sense. It'd be clearer if there were ##
| |
| 9 # | |
| 10 ## This must be set to the directory in which Findit source code is | |
| 11 ## checked out, eg: ~/chrome-internal if the checkout is in | |
| 12 ## ~/chrome-internal/findit. | |
| 13 #export FINDIT_ROOT_DIR='root/path/to/findit' | |
| 14 # | |
| 15 ## Since findit don't want to cover the tests of | |
|
wrengr
2016/10/05 18:41:58
"don't" -> "doesn't"
"the tests of"... of what?
Sharu Jiang
2016/10/06 18:16:56
Done.
| |
| 16 #export UTIL_SCRIPTS_DIR=$FINDIT_ROOT_DIR/util_scripts | |
| 17 # | |
| 18 ##This must be set to the third_party directory under findit. | |
| 19 #export THIRD_PARTY_DIR=${FINDIT_ROOT_DIR}/third_party | |
| 20 # | |
| 21 ## This must be set to your appengine SDK directory. | |
| 22 #APPENGINE_SDK_DIR='path/to/google_appengine' | |
| 23 # | |
| 24 #if [[ $PYTHONPATH != *$APPENGINE_SDK_DIR* ]] | |
| 25 #then | |
| 26 # export PYTHONPATH=$UTIL_SCRIPTS_DIR:$FINDIT_ROOT_DIR:$THIRD_PARTY_DIR:$APPENG INE_SDK_DIR | |
| 27 #fi | |
| 28 # | |
| 29 ## This should be set to your app id. | |
| 30 #export APP_ID="your app id" | |
| 31 # | |
| 32 ## This must be set to the directory to put local checkout in. | |
| 33 #export CHECKOUT_ROOT_DIR='path/to/checkout/root/path' | |
| OLD | NEW |