Sha256: d3166e8b24c32aae43cf56928106fe7a1a615a13e24982a73ea3404f25dd3090

Contents?: true

Size: 751 Bytes

Versions: 97

Compression:

Stored size: 751 Bytes

Contents

#!/usr/bin/env ruby

$VERBOSE = true

ruby_gnome2_base = File.join(File.dirname(__FILE__), "..", "..")
ruby_gnome2_base = File.expand_path(ruby_gnome2_base)

glib_base = File.join(ruby_gnome2_base, "glib2")
pango_base = File.join(ruby_gnome2_base, "pango")

$LOAD_PATH.unshift(File.join(glib_base, "test"))
require 'glib-test-init'

[[glib_base, "glib2"],
 [pango_base, "pango"]].each do |target, module_name|
  if system("which make > /dev/null")
    `make -C #{target.dump} > /dev/null` or exit(1)
  end
  $LOAD_PATH.unshift(File.join(target, "ext", module_name))
  $LOAD_PATH.unshift(File.join(target, "lib"))
end

$LOAD_PATH.unshift(File.join(pango_base, "test"))
require 'pango-test-utils'

require 'pango'

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

Version data entries

97 entries across 97 versions & 1 rubygems

Version Path
pango-3.0.5-x86-mingw32 test/run-test.rb
pango-3.0.5-x64-mingw32 test/run-test.rb
pango-3.0.5 test/run-test.rb
pango-3.0.4-x86-mingw32 test/run-test.rb
pango-3.0.4-x64-mingw32 test/run-test.rb
pango-3.0.4 test/run-test.rb
pango-3.0.3-x64-mingw32 test/run-test.rb
pango-3.0.3-x86-mingw32 test/run-test.rb
pango-3.0.3 test/run-test.rb
pango-3.0.2-x86-mingw32 test/run-test.rb
pango-3.0.2-x64-mingw32 test/run-test.rb
pango-3.0.2 test/run-test.rb
pango-3.0.1-x86-mingw32 test/run-test.rb
pango-3.0.1-x64-mingw32 test/run-test.rb
pango-3.0.1 test/run-test.rb
pango-3.0.0-x86-mingw32 test/run-test.rb
pango-3.0.0-x64-mingw32 test/run-test.rb
pango-2.2.5-x64-mingw32 test/run-test.rb
pango-2.2.5-x86-mingw32 test/run-test.rb
pango-2.2.5 test/run-test.rb