Archive internal test failures to new bucket
Bug: 177799191
Change-Id: I63bece392bcea20971e6e5bfa866b585708b134b
diff --git a/tools/internal_test.py b/tools/internal_test.py
index 8e4caa5..a726e1e 100755
--- a/tools/internal_test.py
+++ b/tools/internal_test.py
@@ -189,7 +189,7 @@
return utils.get_HEAD_sha1()
def get_test_result_dir():
- return os.path.join(utils.R8_TEST_RESULTS_BUCKET, TEST_RESULT_DIR)
+ return os.path.join(utils.R8_INTERNAL_TEST_RESULTS_BUCKET, TEST_RESULT_DIR)
def get_sha_destination(sha):
return os.path.join(get_test_result_dir(), sha)
diff --git a/tools/utils.py b/tools/utils.py
index c831d8c..9e837c3 100644
--- a/tools/utils.py
+++ b/tools/utils.py
@@ -101,6 +101,7 @@
USER_HOME = os.path.expanduser('~')
R8_TEST_RESULTS_BUCKET = 'r8-test-results'
+R8_INTERNAL_TEST_RESULTS_BUCKET = 'r8-internal-test-results'
def archive_file(name, gs_dir, src_file):
gs_file = '%s/%s' % (gs_dir, name)