[test] add lang-expression plugin to vagrant tests

we need this now that #13726 has been merged
This commit is contained in:
Britta Weber 2015-09-23 17:33:46 +02:00
parent 13720eb583
commit d8ff91dbad
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
}