From ea6493ae71cbcbd2b29b913bc598573e3a670aaf Mon Sep 17 00:00:00 2001 From: Celso Providelo Date: Fri, 20 Feb 2015 14:28:47 -0200 Subject: [PATCH] Only enable BOOTTEST for testing, so britney.conf is safe on trunk. --- britney.conf | 2 +- tests/test_boottest.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/britney.conf b/britney.conf index 8d9b285..da4d62c 100644 --- a/britney.conf +++ b/britney.conf @@ -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 diff --git a/tests/test_boottest.py b/tests/test_boottest.py index ce1cb09..d001e96 100644 --- a/tests/test_boottest.py +++ b/tests/test_boottest.py @@ -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')