Fix integration test for events

Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
This commit is contained in:
Qiang Huang 2016-04-26 19:00:21 +08:00
parent 5c1ea321df
commit fb7dcac662
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ function startup_events() {
run "$RUNC" events --stats test_busybox
[ "$status" -eq 0 ]
[[ "${lines[0]}" == [\{]"\"type\""[:]"\"stats\""[,]"\"id\""[:]"\"test_busybox\""[,]* ]]
[[ "${lines[0]}" == *"CgroupStats"* ]]
[[ "${lines[0]}" == *"data"* ]]
}
@test "events --interval default " {
@ -54,7 +54,7 @@ function startup_events() {
run cat events.log
[ "$status" -eq 0 ]
[[ "${lines[0]}" == [\{]"\"type\""[:]"\"stats\""[,]"\"id\""[:]"\"test_busybox\""[,]* ]]
[[ "${lines[0]}" == *"CgroupStats"* ]]
[[ "${lines[0]}" == *"data"* ]]
}
@test "events --interval 1s " {