remove all test_all

Stop manually creating the list of tests (and searching missing).
Main level test_all does a search for all test_*
also possible to run by command line with starts
This commit is contained in:
Torsten Ruger
2017-04-13 17:00:56 +03:00
parent 9dd4409009
commit 73b7e2b22f
21 changed files with 4 additions and 139 deletions

View File

@@ -1,15 +1,4 @@
require_relative "arm/test_all"
require_relative "elf/test_all"
require_relative "lib/test_all"
require_relative "parfait/test_all"
require_relative "risc/test_all"
require_relative "rubyx/test_all"
require_relative "vm/test_all"
require_relative "vool/test_all"
Dir["**/test_*.rb"].each { |f|
next if f.include?("stash/")
require_relative "../#{f}"
}