mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
64 lines
1.7 KiB
Ruby
Executable File
64 lines
1.7 KiB
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
$gtest_apps = %w{common merge propedit}
|
|
$gtest_internal = c(:GTEST_TYPE) == "internal"
|
|
|
|
namespace :tests do
|
|
desc "Build the unit tests"
|
|
task :unit => $gtest_apps.collect { |app| "tests/unit/#{app}/#{app}" + c(:EXEEXT) }
|
|
|
|
desc "Build and run the unit tests"
|
|
task :run_unit => 'tests:unit' do
|
|
$gtest_apps.each { |app| run "LC_ALL=C ./tests/unit/#{app}/#{app}" }
|
|
end
|
|
|
|
if !c(:VALGRIND).to_s.empty?
|
|
desc "Build and run the unit tests under valgrind's memcheck"
|
|
task :run_valgrind_unit => 'tests:unit' do
|
|
$gtest_apps.each { |app| run "LC_ALL=C #{c(:VALGRIND)} --tool=memcheck --num-callers=12 ./tests/unit/#{app}/#{app}" }
|
|
end
|
|
end
|
|
end
|
|
|
|
$build_system_modules[:gtest] = {
|
|
:setup => lambda do
|
|
if $gtest_internal
|
|
$flags[:cxxflags] += " -Ilib/gtest -Ilib/gtest/include"
|
|
$flags[:ldflags] += " -Llib/gtest/src"
|
|
end
|
|
end,
|
|
|
|
:define_tasks => lambda do
|
|
gtest_libs = {
|
|
'common' => [],
|
|
'propedit' => [ :mtxpropedit ],
|
|
'merge' => [ :mtxmerge ],
|
|
}
|
|
|
|
#
|
|
# Google Test framework
|
|
#
|
|
if $gtest_internal
|
|
Library.
|
|
new('lib/gtest/src/libgtest').
|
|
sources([ 'lib/gtest/src' ], :type => :dir, :except => [ 'gtest-all.cc' ]).
|
|
create
|
|
end
|
|
|
|
Library.
|
|
new('tests/unit/libmtxunittest').
|
|
sources('tests/unit', :type => :dir).
|
|
create
|
|
|
|
$gtest_apps.each do |app|
|
|
Application.
|
|
new("tests/unit/#{app}/#{app}").
|
|
description("Build the unit tests executable for '#{app}'").
|
|
aliases("unit_tests_#{app}").
|
|
sources([ "tests/unit/#{app}" ], :type => :dir).
|
|
libraries(gtest_libs[app], :mtxunittest, $common_libs, :gtest, :pthread).
|
|
create
|
|
end
|
|
end,
|
|
}
|