view graal/com.oracle.truffle.ruby.test/specs/rubytruffle.mspec @ 13702:e749c19405ce

IGV: remove listener when closing the top component
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 20 Jan 2014 18:22:02 +0200
parents 0fbee3eb71f0
children
line wrap: on
line source

class MSpecScript

  Rubyspec = "rubyspec"

  set :command_line, [
    "rubyspec/command_line"
  ]

  set :language, [
    "rubyspec/language"
  ]

  set :tags_patterns, [
      [/rubyspec/, "tags"],
      [/_spec.rb$/, "_tags.txt"]
  ]

  MSpec.enable_feature :encoding
  MSpec.enable_feature :continuation
  MSpec.enable_feature :fiber
  MSpec.enable_feature :fork
  MSpec.enable_feature :generator

  set :files, get(:command_line) + get(:language)

end