| OLD | NEW |
| (Empty) | |
| 1 #!/bin/bash |
| 2 |
| 3 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 7 expected_auserver="https://tools.google.com/service/update2" |
| 8 expected_release_name="Chrome OS" |
| 9 |
| 10 # List boards here |
| 11 expected_boards=( |
| 12 x86-mario |
| 13 ) |
| 14 |
| 15 # List track names here |
| 16 expected_release_tracks=( |
| 17 beta-channel |
| 18 dev-channel |
| 19 ) |
| 20 |
| 21 # Associate board names with APPID's by creating a series |
| 22 # of variables here. Variables should be named based on |
| 23 # expected boards (above), with hyphens transposed to |
| 24 # underscores (to be legal in variable names). |
| 25 expected_appid_x86_mario="{87efface-864d-49a5-9bb3-4b050a7c227a}" |
| OLD | NEW |