Only enable BOOTTEST for testing, so britney.conf is safe on trunk.

This commit is contained in:
Celso Providelo 2015-02-20 14:28:47 -02:00
parent c76874fda5
commit ea6493ae71
2 changed files with 4 additions and 1 deletions

View File

@ -66,7 +66,7 @@ ADT_ENABLE = yes
ADT_DEBUG = no
ADT_ARCHES = amd64 i386
BOOTTEST_ENABLE = yes
BOOTTEST_ENABLE = no
BOOTTEST_DEBUG = yes
BOOTTEST_ARCHES = armhf amd64
BOOTTEST_FETCH = yes

View File

@ -129,6 +129,9 @@ class TestBoottestEnd2End(TestBase):
# Disable autopkgtests.
new_config = original_config.replace(
'ADT_ENABLE = yes', 'ADT_ENABLE = no')
# Enable boottest.
new_config = new_config.replace(
'BOOTTEST_ENABLE = no', 'BOOTTEST_ENABLE = yes')
# Disable TouchManifest auto-fetching.
new_config = new_config.replace(
'BOOTTEST_FETCH = yes', 'BOOTTEST_FETCH = no')