Get rid of obsoleted RJITFirst

It was renamed from test_mjit, but we did not maintain it as test_rjit.
We test RJIT very differently.
This commit is contained in:
Takashi Kokubun 2023-12-22 20:20:03 -08:00
Родитель 9b289d58f7
Коммит c25705c267
1 изменённых файлов: 4 добавлений и 12 удалений

Просмотреть файл

@ -53,17 +53,7 @@ module Test
end
end
module RJITFirst
def group(list)
# RJIT first
rjit, others = list.partition {|e| /test_rjit/ =~ e}
rjit + others
end
end
class Alpha < NoSort
include RJITFirst
def sort_by_name(list)
list.sort_by(&:name)
end
@ -76,8 +66,6 @@ module Test
# shuffle test suites based on CRC32 of their names
Shuffle = Struct.new(:seed, :salt) do
include RJITFirst
def initialize(seed)
self.class::CRC_TBL ||= (0..255).map {|i|
(0..7).inject(i) {|c,| (c & 1 == 1) ? (0xEDB88320 ^ (c >> 1)) : (c >> 1) }
@ -95,6 +83,10 @@ module Test
list.sort_by {|e| randomize_key(e)}
end
def group(list)
list
end
private
def crc32(str, crc32 = 0xffffffff)