Sha256: 50b01732d5c9441ca2ca5050c216568bd0aaced31ce0d3c98eb6a717908e88d1
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
# Copyright (c) 2016-2017 Minqi Pan # # This file is part of Node.js Compiler, distributed under the MIT License # For full terms see the included LICENSE file require 'shellwords' require 'tmpdir' require 'fileutils' require 'json' require 'open3' module Node class Compiler class Test def initialize(tmpdir, options = {}) Utils.prepare_tmpdir(tmpdir) @vendor_node = File.join(tmpdir, 'node') @options = options end def run! Utils.chdir(@vendor_node) do Utils.inject_memfs(File.expand_path('./test/fixtures', @vendor_node), @vendor_node) STDERR.puts "-> FileUtils.rm_f(#{Gem.win_platform? ? 'Release\\node.exe' : 'out/Release/node'})" FileUtils.rm_f(Gem.win_platform? ? 'Release\\node.exe' : 'out/Release/node') File.open(File.expand_path('./lib/enclose_io_entrance.js', @vendor_node), "w") { |f| f.puts 'module.exports = false;' } test_env = { 'FLAKY_TESTS_MODE' => 'dontcare', 'FLAKY_TESTS' => 'dontcare', 'ENCLOSE_IO_USE_ORIGINAL_NODE' => '1', 'ENCLOSE_IO_ALWAYS_USE_ORIGINAL_NODE' => '1', } if Gem.win_platform? Utils.run(test_env, 'call vcbuild.bat nosign test-ci ignore-flaky') else Utils.run("./configure") Utils.run("make") Utils.run(test_env, "make test-ci") end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
node-compiler-0.9.1 | lib/node/compiler/test.rb |