summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-12-23 13:05:19 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-12-23 13:05:19 +0900
commit3895711dd88fbad592652c99409af30fa1ae04fc (patch)
tree95d50313c697d6a143a461534dbfd8cb1deaa6fc
parent9dc86f903bb07ca3c4e1f654eefc86e1d0dda400 (diff)
downloadjson-3895711dd88fbad592652c99409af30fa1ae04fc.tar.gz
Added helper task for test suite sync
-rw-r--r--Rakefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index de330b1..813a6d9 100644
--- a/Rakefile
+++ b/Rakefile
@@ -334,5 +334,12 @@ else
task :release => :build
end
+task :sync_tool do
+ require 'fileutils'
+ FileUtils.cp "../../ruby/ruby/tool/lib/test/unit/core_assertions.rb", "./tests/lib"
+ FileUtils.cp "../../ruby//ruby/tool/lib/envutil.rb", "./tests/lib"
+ FileUtils.cp "../../ruby//ruby/tool/lib/find_executable.rb", "./tests/lib"
+end
+
desc "Compile in the the source directory"
task :default => [ :clean, :test ]