Skip to content

Commit ae96b99

Browse files
committedMay 23, 2015
Build mspec_note specs to a local file in tmp/
This should ease debugging as the generated code is no more harvested by OS (previously was written to a real tmpfile).
1 parent 796cc03 commit ae96b99

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed
 

‎tasks/testing.rake

+10-4
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ task :mspec_node do
4747
end
4848

4949
requires = specs.map{|s| "require '#{s.sub(/^spec\//,'')}'"}
50+
include_paths = '-Ispec -Ilib'
51+
5052
filename = 'tmp/mspec_node.rb'
53+
js_filename = 'tmp/mspec_node.js'
5154
mkdir_p File.dirname(filename)
5255
enter_benchmarking_mode = ENV['BM'] && "OSpecRunner.main.bm!(#{Integer(ENV['BM'])})"
5356
File.write filename, <<-RUBY
@@ -59,7 +62,9 @@ task :mspec_node do
5962

6063
stubs = '-smspec/helpers/tmp -smspec/helpers/environment -smspec/guards/block_device -smspec/guards/endian'
6164

62-
sh "ruby -rbundler/setup -rmspec/opal/special_calls bin/opal -Ispec -Ilib -gmspec #{stubs} -rnodejs -Dwarning -A #{filename}"
65+
sh "ruby -rbundler/setup -rmspec/opal/special_calls "\
66+
"bin/opal -gmspec #{include_paths} #{stubs} -rnodejs -Dwarning -A #{filename} -c > #{js_filename}"
67+
sh "NODE_PATH=stdlib/nodejs/node_modules node #{js_filename}"
6368
end
6469

6570
task :cruby_tests do
@@ -85,16 +90,17 @@ task :cruby_tests do
8590

8691
requires = files.map{|f| "require '#{f}'"}
8792
filename = 'tmp/cruby_tests.rb'
93+
js_filename = 'tmp/cruby_tests.js'
8894
mkdir_p File.dirname(filename)
8995
File.write filename, requires.join("\n")
9096

9197
stubs = "-soptparse -sio/console -stimeout -smutex_m -srubygems -stempfile -smonitor"
9298

9399
puts "== Running: #{files.join ", "}"
94100

95-
sh 'RUBYOPT="-rbundler/setup" '\
96-
"bin/opal #{include_paths} #{stubs} -rnodejs -Dwarning -A #{filename} -c > tmp/cruby_tests.js"
97-
sh 'NODE_PATH=stdlib/nodejs/node_modules node tmp/cruby_tests.js'
101+
sh "ruby -rbundler/setup "\
102+
"bin/opal #{include_paths} #{stubs} -rnodejs -Dwarning -A #{filename} -c > #{js_filename}"
103+
sh "NODE_PATH=stdlib/nodejs/node_modules node #{js_filename}"
98104
end
99105

100106
task :mspec => [:mspec_node, :mspec_phantom]

0 commit comments

Comments
 (0)
Please sign in to comment.