aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Lozano <llozano@google.com>2020-02-10 02:12:18 -0800
committerLuis Lozano <llozano@chromium.org>2020-02-10 17:49:23 +0000
commitb02958ed918fc6876749f900254fe4e947d33be5 (patch)
treedeea4067cfca4dbe68846d6696269130aa06f878
parent05c0470a26e78f56616188841216d76b10094c0d (diff)
downloadtoolchain-utils-b02958ed918fc6876749f900254fe4e947d33be5.tar.gz
toolchain-utils: fix bug in moving weekday testing to nightly-testing.
BUG=none TEST=none Change-Id: I8477d79d409a49219d6458779c70c0da0376de69 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/2046613 Tested-by: Luis Lozano <llozano@chromium.org> Auto-Submit: Luis Lozano <llozano@chromium.org> Commit-Queue: Zhizhou Yang <zhizhouy@google.com> Reviewed-by: Zhizhou Yang <zhizhouy@google.com>
-rwxr-xr-xbuildbot_test_toolchains.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildbot_test_toolchains.py b/buildbot_test_toolchains.py
index 064f0db6..be18d467 100755
--- a/buildbot_test_toolchains.py
+++ b/buildbot_test_toolchains.py
@@ -39,7 +39,7 @@ ROLE_ACCOUNT = 'mobiletc-prebuild'
TOOLCHAIN_DIR = os.path.dirname(os.path.realpath(__file__))
MAIL_PROGRAM = '~/var/bin/mail-sheriff'
PENDING_ARCHIVES_DIR = os.path.join(CROSTC_ROOT, 'pending_archives')
-NIGHTLY_TESTS_DIR = os.path.join(CROSTC_ROOT, 'nightly_test_reports')
+NIGHTLY_TESTS_RESULTS = os.path.join(CROSTC_ROOT, 'nightly_test_reports')
IMAGE_DIR = '{board}-{image_type}'
IMAGE_VERSION_STR = r'{chrome_version}-{tip}\.{branch}\.{branch_branch}'
@@ -88,7 +88,7 @@ class ToolchainComparator(object):
timestamp = datetime.datetime.strftime(datetime.datetime.now(),
'%Y-%m-%d_%H:%M:%S')
self._reports_dir = os.path.join(
- NIGHTLY_TESTS_DIR,
+ NIGHTLY_TESTS_RESULTS,
'%s.%s' % (timestamp, board),
)