Sha256: 733fbf5881ad939504aefd153b7050b4675b7262b6000cab26ed53988716f6a5

Contents?: true

Size: 1.36 KB

Versions: 2

Compression:

Stored size: 1.36 KB

Contents

#!/usr/bin/env ruby
#
# Copyright (C) 2015-2020  Ruby-GNOME Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

test_dir = File.expand_path(File.join(__dir__))
source_dir = File.expand_path(File.join(test_dir, ".."))
build_dir = File.expand_path(".")

$LOAD_PATH.unshift(source_dir)
require_relative "glib-test-init"

if File.exist?("#{build_dir}/Makefile") and system("which make > /dev/null")
  system("cd #{build_dir.dump} && make > /dev/null") or exit(1)
end

$LOAD_PATH.unshift(File.join(build_dir, "ext", "glib2"))
$LOAD_PATH.unshift(File.join(source_dir, "lib"))

$LOAD_PATH.unshift(test_dir)
require_relative "glib-test-utils"

require "glib2"

exit(Test::Unit::AutoRunner.run(true, test_dir))

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
glib2-3.4.3 test/run-test.rb
glib2-3.4.2 test/run-test.rb