telemetry-without-autotest.exp revision f4220a30480a945c93d6fdf6fb5853b3ba36c6d1
1# This example experiment file shows how to run a Telemetry test
2# directly, bypassing autotest.  This runs the "run_measurement"
3# script.  You need to supply both the name of the Telemetry test and
4# the page_set (via the test_args argument).
5#
6# You should replace all the placeholders, marked by angle-brackets,
7# with the appropriate actual values.
8
9name: telemetry_without_autotest_example
10board: <your-board-goes-here>
11
12# Note:  You can specify multiple remotes, to run your tests in parallel on
13# multiple machines. e.g. "remote: test-machine-1.com test-machine2.come
14# test-machine3.com"
15remote: <your-remote-goes-here>
16
17# Replace "page_cycler_dhtml" below with the name of the Telemetry test
18# that you want run_measurement to run.  Also replace the page set below
19# (in the test_args field) with the appropriate page set for your test.
20# N.B.  The key to running telemetry without autotest is the 'suite' field.
21# Make sure your suite is 'telemtry', NOT 'telemetry_Crosperf'.
22benchmark: page_cycler_dhtml {
23    suite: telemetry
24    iterations: 1
25    test_args: ./page_sets/page_cycler/dhtml.json
26}
27
28# Replace the chromeos image below with the actual path to your test image.
29test_image {
30  chromeos_image:<path-to-your-chroot>/src/build/images/<board>/test-image/chromiumos_test_image.bin
31}
32