mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 22:37:14 +08:00
e9f89e163f
Signed-off-by: Mike Brown <brownwm@us.ibm.com>
12 lines
246 B
Bash
12 lines
246 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
@test "runc version" {
|
|
run "$RUNC" -v
|
|
[ "$status" -eq 0 ]
|
|
[[ ${lines[0]} =~ runc\ version\ [0-9]+\.[0-9]+\.[0-9]+ ]]
|
|
[[ ${lines[1]} =~ commit:+ ]]
|
|
[[ ${lines[2]} =~ spec:\ [0-9]+\.[0-9]+\.[0-9]+ ]]
|
|
}
|