1 # This example experiment file shows how to run a Telemetry test, 2 # using autotest (via "suite: telemetry_Crosperf"). This runs the 3 # Telemetry's "run_benchmark" for the specified test. 4 # 5 # You should replace all the placeholders, marked by angle-brackets, 6 # with the appropriate actual values. 7 8 name: basic_telemetry_crosperf_example 9 board: <your-board-goes-here> 10 11 # Note: You can specify multiple remotes, to run your tests in parallel on 12 # multiple machines. e.g. "remote: test-machine-1.com test-machine2.come 13 # test-machine3.com" 14 remote: <your-remote-goes-here> 15 16 # Replace "octane" below with the name of the Telemetry benchmark you 17 # want to run. 18 benchmark: octane { 19 suite: telemetry_Crosperf 20 iterations: 1 21 } 22 23 # NOTE: You must specify at least one image; you may specify more than one. 24 # Replace <path-to-your-chroot-goes-here> and <board-goes-here> below. 25 vanilla_image { 26 chromeos_image:<path-to-your-chroot>/src/build/images/<board>/vanilla-image/chromiumos_test_image.bin 27 } 28 29 # Replace the chromeos image below with the actual path to your test image. 30 test_image { 31 chromeos_image:<path-to-your-chroot>/src/build/images/<board>/test-image/chromiumos_test_image.bin 32 } 33