diff options
| author | Benoit Daloze <eregontp@gmail.com> | 2023-08-02 21:37:34 +0200 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2023-08-16 17:47:32 -0700 |
| commit | d2eb82d9692c0ad2da36e5b910dd34c77395733a (patch) | |
| tree | 57e614b9780718feee3530fa91a6eb93f2654dba | |
| parent | 1002b777c4d8c7036759a2cd28f3fea5352f98d6 (diff) | |
[ruby/yarp] Fix test to use the new location of yarp.so
https://github.com/ruby/yarp/commit/a22b204a11
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8226
| -rw-r--r-- | test/yarp/library_symbols_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/yarp/library_symbols_test.rb b/test/yarp/library_symbols_test.rb index 276b42a028..766adf16b7 100644 --- a/test/yarp/library_symbols_test.rb +++ b/test/yarp/library_symbols_test.rb @@ -13,7 +13,7 @@ if RUBY_PLATFORM =~ /linux/ @librubyparser_a = File.expand_path(File.join(__dir__, "..", "build", "librubyparser.a")) @librubyparser_so = File.expand_path(File.join(__dir__, "..", "build", "librubyparser.so")) - @yarp_so = File.expand_path(File.join(__dir__, "..", "lib", "yarp.so")) + @yarp_so = File.expand_path(File.join(__dir__, "..", "lib", "yarp", "yarp.so")) end # objdump runner and helpers |
