Skip to content

Commit

Permalink
Adds apache header to Ec2LiveTest, adds 'Live' group to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nakomis committed Aug 20, 2014
1 parent 4885a79 commit f23ee27
Showing 1 changed file with 25 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package brooklyn.entity.nosql.couchbase;

import java.util.List;
Expand All @@ -15,7 +33,6 @@
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;

@Test
public class CouchbaseSyncGatewayEc2LiveTest extends AbstractEc2LiveTest {

@Override
Expand Down Expand Up @@ -57,24 +74,27 @@ protected void doTest(Location loc) throws Exception {


// Supported operating systems

@Test(groups = {"Live"})
@Override
public void test_Ubuntu_12_0() throws Exception {
super.test_Ubuntu_12_0();
}

@Test(groups = {"Live"})
@Override
public void test_Red_Hat_Enterprise_Linux_6() throws Exception {
super.test_Red_Hat_Enterprise_Linux_6();
}

@Test(groups = {"Live"})
@Override
public void test_CentOS_6_3() throws Exception {
super.test_CentOS_6_3();
}

// Unsupported operating systems

@Test(groups = {"Live"})
@Override
public void test_CentOS_5_6() throws Exception {
// Unsupported
Expand All @@ -92,16 +112,19 @@ public void test_CentOS_5_6() throws Exception {
// rpmlib(PayloadIsXz) <= 5.2-1 is needed by couchbase-server-2.5.1-1083.x86_64
}

@Test(groups = {"Live"})
@Override
public void test_Debian_6() throws Exception {
// Unsupported
}

@Test(groups = {"Live"})
@Override
public void test_Debian_7_2() throws Exception {
// Unsupported
}

@Test(groups = {"Live"})
@Override
public void test_Ubuntu_10_0() throws Exception {
// Unsupported
Expand Down

0 comments on commit f23ee27

Please sign in to comment.