summaryrefslogtreecommitdiff
path: root/util/run_ects.py
diff options
context:
space:
mode:
authorDaisuke Nojiri <dnojiri@chromium.org>2017-06-23 17:41:50 -0700
committerchrome-bot <chrome-bot@chromium.org>2017-06-28 21:50:50 -0700
commitde36e33ecf8d7e376d36b68c4be0229d306006ad (patch)
treef9ae3e404cffeb93f30c93abcd35257923c92483 /util/run_ects.py
parent681b6fdf1f3ed049324403da3f6125b0cf21a2df (diff)
downloadchrome-ec-de36e33ecf8d7e376d36b68c4be0229d306006ad.tar.gz
eCTS: Add I2C suite to run_ects.py
This patch adds i2c suite to run_ects.py. It also adds checks for return values from i2c_read and i2c_write functions. BUG=chromium:653183 BRANCH=none TEST=Run run_ects.py and verify all test pass. Change-Id: Ie3d6e1e6f131235e2b28f39e1546c9cb4c3b92f6 Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/547024 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'util/run_ects.py')
-rw-r--r--util/run_ects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/run_ects.py b/util/run_ects.py
index 981d23aa50..a633430113 100644
--- a/util/run_ects.py
+++ b/util/run_ects.py
@@ -12,7 +12,7 @@ import subprocess
import sys
# List of tests to run.
-TESTS = ['meta', 'gpio', 'hook', 'interrupt', 'mutex', 'task', 'timer']
+TESTS = ['meta', 'gpio', 'hook', 'i2c', 'interrupt', 'mutex', 'task', 'timer']
class CtsRunner(object):