-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: skip mini_racer_loader when malloc is overridden (#309)
LD_PRELOAD can potentially cause issues with the "symbols hidden" loader for mini_racer This will unconditionally skip the loader when LD_PRELOAD is specified and points to *malloc (eg jemalloc or tcmalloc) see: #292 (comment) (also remove minitest/pride since is it no longer loading in CI)
- Loading branch information
1 parent
537eae9
commit 87ef545
Showing
4 changed files
with
24 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
module MiniRacer | ||
VERSION = "0.14.0" | ||
VERSION = "0.14.1" | ||
LIBV8_NODE_VERSION = "~> 18.19.0.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) | ||
require 'mini_racer' | ||
$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__) | ||
require "mini_racer" | ||
|
||
require 'minitest/pride' | ||
require 'minitest/autorun' | ||
require "minitest/autorun" |