Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(597)

Side by Side Diff: appengine/findit/util_scripts/crash_queries/README.md

Issue 2391823006: [Findit] Add iterator and crash_iterator for delta test (Closed)
Patch Set: Fix nits. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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:
stgao 2016/10/10 23:39:39 Why we still pull data from ClusterFuzz? What's th
Sharu Jiang 2016/10/12 00:52:10 Right, forgot to clean up the comments.
7 ## source setup_enviroments.sh
8 ## . setup_enviroments.sh
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 doesn't want to cover the tests of
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'
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698