Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 description "Chrome OS factory startup stub" | 5 description "Chrome OS factory startup stub" |
| 6 author "chromium-os-dev@chromium.org" | 6 author "chromium-os-dev@chromium.org" |
| 7 | 7 |
| 8 start on stopped udev-addon | 8 start on stopped udev-addon |
| 9 stop on starting halt or starting reboot | 9 stop on starting halt or starting reboot |
| 10 | 10 |
| 11 script | 11 script |
| 12 modprobe i2c-dev | 12 modprobe i2c-dev |
| 13 cd /usr/local/autotest | 13 cd /usr/local/autotest |
| 14 eval $(./site_tests/suite_Factory/startx.sh) | 14 eval $(./site_tests/suite_Factory/startx.sh) |
| 15 date >>/var/log/factory.log | 15 date >>/var/log/factory.log |
| 16 if [ ! -e factory_started ]; then | 16 if [ ! -e factory_started ]; then |
| 17 touch factory_started | 17 touch factory_started |
| 18 cp -f site_tests/suite_Factory/control . | 18 cp -f site_tests/suite_Factory/control . |
| 19 OPT="" | 19 OPT="" |
| 20 else | 20 else |
| 21 OPT="-c" | 21 OPT="-c" |
| 22 fi | 22 fi |
| 23 ./bin/autotest -t factory $OPT control >>/var/log/factory.log 2>&1 | 23 FACTORY_LOG_FILE=/var/log/factory.log |
| 24 CONSOLE_LOG_FILE=/var/log/factory_console.log | |
| 25 # Factory log will be uploaded so we must always preserve previous results. | |
| 26 # Console log is just for UI to display, no need to be saved across sessions; | |
| 27 # however in order to support writing by multiple processes, the file must be | |
| 28 # opened in "append" mode. So we must first delete it then use >> to append. | |
| 29 rm -f "$CONSOLE_LOG_FILE" | |
| 30 ./bin/autotest -t factory $OPT control 2>&1 | | |
| 31 tee -a "$FACTORY_LOG_FILE" | | |
| 32 grep --line-buffer "FACTORY" >>"$CONSOLE_LOG_FILE" | |
|
jrbarnette
2011/03/30 18:14:40
Are you sure the pattern "FACTORY" is restrictive
Hung-Te
2011/03/31 02:17:10
A sample of the data format:
01:21:28 ERROR| FACTO
| |
| 24 end script | 33 end script |
| 25 | 34 |
| 26 pre-stop script | 35 pre-stop script |
| 27 pkill python | 36 pkill python |
| 28 pkill X | 37 pkill X |
| 29 end script | 38 end script |
| OLD | NEW |