Sha256: 97a3c79a057bf4e0d542108ce8ae02701ed4df9e63d2c4c0c8874119cf5a8d48
Contents?: true
Size: 1.73 KB
Versions: 6
Compression:
Stored size: 1.73 KB
Contents
#!/usr/bin/env ruby # # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. $VERBOSE = true require "pathname" (ENV["ARROW_DLL_PATH"] || "").split(File::PATH_SEPARATOR).each do |path| RubyInstaller::Runtime.add_dll_directory(path) end base_dir = Pathname.new(__dir__).parent.expand_path lib_dir = base_dir + "lib" ext_dir = base_dir + "ext" + "arrow" test_dir = base_dir + "test" make = nil if ENV["NO_MAKE"] != "yes" if ENV["MAKE"] make = ENV["MAKE"] elsif system("which gmake > #{File::NULL} 2>&1") make = "gmake" elsif system("which make > #{File::NULL} 2>&1") make = "make" end end if make Dir.chdir(ext_dir.to_s) do unless File.exist?("Makefile") system(RbConfig.ruby, "extconf.rb", "--enable-debug-build") or exit(false) end system("#{make} > #{File::NULL}") or exit(false) end end $LOAD_PATH.unshift(ext_dir.to_s) $LOAD_PATH.unshift(lib_dir.to_s) require_relative "helper" ENV["TEST_UNIT_MAX_DIFF_TARGET_STRING_SIZE"] ||= "10000" exit(Test::Unit::AutoRunner.run(true, test_dir.to_s))
Version data entries
6 entries across 6 versions & 1 rubygems