mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
5e49abc525
It's the first version number where a component is more than one digit long.
16 lines
294 B
Ruby
Executable File
16 lines
294 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
class T_260version_numbers < Test
|
|
def description
|
|
return "version number of CLI tools"
|
|
end
|
|
|
|
def run
|
|
%w{merge info extract propedit}.each do |name|
|
|
sys "../src/mkv#{name} --version | grep -E 'v([0-9]{1,2}\\.){2}[0-9]+'"
|
|
end
|
|
|
|
return 'ok'
|
|
end
|
|
end
|