Sha256: eb2ff5173e9e22a3fcb275882f1585c1a5e1b7d66db79ed4e36bf9e82ac3cc0e

Contents?: true

Size: 1012 Bytes

Versions: 29

Compression:

Stored size: 1012 Bytes

Contents

#!/usr/bin/env ruby

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

have_make = system("which make > /dev/null")

glib_dir = File.expand_path(File.join(base_dir, "..", "glib2"))
gdk_pixbuf_dir = File.expand_path(File.join(base_dir, "..", "gdk_pixbuf2"))
pango_dir = File.join(File.join(base_dir, ".." , "pango"))

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

[[gdk_pixbuf_dir, "gdk_pixbuf2"],
 [pango_dir, "pango"],
 [glib_dir, "glib2"],
 [base_dir, "poppler"]].each do |dir, module_name|
  if File.exist?(File.join(dir, "Makefile"))
    if have_make
      system("cd #{dir.dump} && make > /dev/null") or exit(false)
    end
    $LOAD_PATH.unshift(File.join(dir, "ext", module_name))
  end
  $LOAD_PATH.unshift(File.join(dir, "lib"))
end
require "poppler"

$LOAD_PATH.unshift(File.join(base_dir, "test"))
require 'poppler-test-utils'
class Test::Unit::TestCase
  include PopplerTestUtils
end

exit Test::Unit::AutoRunner.run(true, File.join(base_dir, "test"))

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
poppler-3.1.8-x64-mingw32 test/run-test.rb
poppler-3.1.8-x86-mingw32 test/run-test.rb
poppler-3.1.8 test/run-test.rb
poppler-3.1.7-x64-mingw32 test/run-test.rb
poppler-3.1.7-x86-mingw32 test/run-test.rb
poppler-3.1.7 test/run-test.rb
poppler-3.1.6-x64-mingw32 test/run-test.rb
poppler-3.1.6-x86-mingw32 test/run-test.rb
poppler-3.1.6 test/run-test.rb
poppler-3.1.5-x64-mingw32 test/run-test.rb
poppler-3.1.5-x86-mingw32 test/run-test.rb
poppler-3.1.4-x64-mingw32 test/run-test.rb
poppler-3.1.4-x86-mingw32 test/run-test.rb
poppler-3.1.4 test/run-test.rb
poppler-3.1.3-x64-mingw32 test/run-test.rb
poppler-3.1.3-x86-mingw32 test/run-test.rb
poppler-3.1.3 test/run-test.rb
poppler-3.1.2-x64-mingw32 test/run-test.rb
poppler-3.1.2-x86-mingw32 test/run-test.rb
poppler-3.1.2 test/run-test.rb