From 17852b12544e90310c7fdecdf2f90fd32e91b995 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Fri, 18 Apr 2014 12:56:03 -0700 Subject: [PATCH] Test matrix generation for feature branches. The previous change to fix test matrix generation did not include a test. Add a test here so that this does not regress. Change-Id: Ib267a435fa0f28e50a83437d96ad0ef321ba6f46 --- test-features.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test-features.sh b/test-features.sh index c53843ef..34b7a8f5 100755 --- a/test-features.sh +++ b/test-features.sh @@ -48,6 +48,11 @@ function test_full_master { assert_list_equal $TEMPEST_FULL_MASTER $results } +function test_full_feature_ec { + local results=$(DEVSTACK_GATE_TEMPEST=1 ./test-matrix.py -b feature/ec) + assert_list_equal $TEMPEST_FULL_MASTER $results +} + function test_full_havana { local results=$(DEVSTACK_GATE_TEMPEST=1 ./test-matrix.py -b stable/havana) assert_list_equal $TEMPEST_FULL_HAVANA $results @@ -74,6 +79,7 @@ function test_grenade_old_master { } test_full_master +test_full_feature_ec test_neutron_master test_heat_slow_master test_grenade_new_master