Merge pull request #13747 from brwe/vagrant-add-expression-plugin

[test] add lang-expression plugin to vagrant tests
This commit is contained in:
Britta Weber 2015-09-23 18:01:09 +02:00
commit 86ab7b3b47
2 changed files with 14 additions and 0 deletions

View File

@ -171,6 +171,12 @@
<version>${elasticsearch.version}</version>
<type>zip</type>
</artifactItem>
<artifactItem>
<groupId>org.elasticsearch.plugin</groupId>
<artifactId>lang-expression</artifactId>
<version>${elasticsearch.version}</version>
<type>zip</type>
</artifactItem>
<artifactItem>
<groupId>org.elasticsearch.plugin</groupId>
<artifactId>lang-javascript</artifactId>

View File

@ -191,6 +191,10 @@ fi
install_and_check_plugin discovery multicast
}
@test "[$GROUP] install lang-expression plugin" {
install_and_check_plugin lang expression
}
@test "[$GROUP] install javascript plugin" {
install_and_check_plugin lang javascript rhino-*.jar
}
@ -287,6 +291,10 @@ fi
remove_plugin discovery-multicast
}
@test "[$GROUP] remove lang-expression plugin" {
remove_plugin lang-expression
}
@test "[$GROUP] remove javascript plugin" {
remove_plugin lang-javascript
}