specs: do not run separate 'configure' step before main build test

This commit is contained in:
Josh Holtrop 2018-10-30 17:00:10 -04:00
parent 3a564c0ca2
commit 084080a682

View File

@ -55,12 +55,6 @@ describe Rscons do
end
def run_rscons(options = {})
if options[:configure].nil? or options[:configure]
results = run_rscons(options.merge(op: :configure, configure: false))
if results.stderr != ""
return results
end
end
operation = options[:op] || "build"
if operation.is_a?(Symbol)
operation = operation.to_s