view graal/com.oracle.truffle.ruby.test/specs/rubytruffle.mspec @ 13982:b167b1838029

mx eclipseinit: take care of working sets that were edited by hand
author Michael Haupt <michael.haupt@oracle.com>
date Thu, 20 Feb 2014 11:14:46 +0100
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