Merge pull request #13747 from brwe/vagrant-add-expression-plugin
[test] add lang-expression plugin to vagrant tests
This commit is contained in:
commit
86ab7b3b47
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue