From b91da2c9889c687041258ee80aa2825b01c5bf3f Mon Sep 17 00:00:00 2001 From: Ashiepaws Date: Sun, 17 May 2026 16:26:17 +0200 Subject: [PATCH] Rename hacktix test roms & Fix old GitHub links --- main.py | 4 ++-- testroms/{hacktix.py => ashiepaws.py} | 10 +++++----- testroms/{hacktix => ashiepaws}/bully.gb | Bin testroms/{hacktix => ashiepaws}/bully.png | Bin testroms/{hacktix => ashiepaws}/strikethrough.gb | Bin testroms/{hacktix => ashiepaws}/strikethrough.png | Bin 6 files changed, 7 insertions(+), 7 deletions(-) rename testroms/{hacktix.py => ashiepaws.py} (56%) rename testroms/{hacktix => ashiepaws}/bully.gb (100%) rename testroms/{hacktix => ashiepaws}/bully.png (100%) rename testroms/{hacktix => ashiepaws}/strikethrough.gb (100%) rename testroms/{hacktix => ashiepaws}/strikethrough.png (100%) diff --git a/main.py b/main.py index dac2383..fe32e31 100644 --- a/main.py +++ b/main.py @@ -18,7 +18,7 @@ import testroms.samesuite import testroms.ax6 import testroms.daid -import testroms.hacktix +import testroms.ashiepaws import testroms.cpp import testroms.mealybug from test import * @@ -174,7 +174,7 @@ def load_emulators(filter_data): return [spec['factory']() for spec in get_emulator_specs(filter_data)] -tests = testroms.acid.all + testroms.blargg.all + testroms.daid.all + testroms.ax6.all + testroms.mooneye.all + testroms.samesuite.all + testroms.hacktix.all + testroms.cpp.all + testroms.mealybug.all +tests = testroms.acid.all + testroms.blargg.all + testroms.daid.all + testroms.ax6.all + testroms.mooneye.all + testroms.samesuite.all + testroms.ashiepaws.all + testroms.cpp.all + testroms.mealybug.all def checkFilter(input, filter_data): if filter_data is None: diff --git a/testroms/hacktix.py b/testroms/ashiepaws.py similarity index 56% rename from testroms/hacktix.py rename to testroms/ashiepaws.py index d76bac1..5fd3d26 100644 --- a/testroms/hacktix.py +++ b/testroms/ashiepaws.py @@ -2,10 +2,10 @@ all = [ - Test("hacktix/bully.gb (DMG)", rom="hacktix/bully.gb", runtime=0.5, - description="A collection of multiple test cases testing a variety of behaviors. (See Repository for Details)", url="https://github.com/Hacktix/BullyGB"), - Test("hacktix/bully.gb (GBC)", rom="hacktix/bully.gb", runtime=0.5, model=CGB, - description="A collection of multiple test cases testing a variety of behaviors. (See Repository for Details)", url="https://github.com/Hacktix/BullyGB"), - Test("hacktix/strikethrough.gb", rom="hacktix/strikethrough.gb", runtime=0.5, + Test("ashiepaws/bully.gb (DMG)", rom="ashiepaws/bully.gb", runtime=0.5, + description="A collection of multiple test cases testing a variety of behaviors. (See Repository for Details)", url="https://github.com/Ashiepaws/BullyGB"), + Test("ashiepaws/bully.gb (GBC)", rom="ashiepaws/bully.gb", runtime=0.5, model=CGB, + description="A collection of multiple test cases testing a variety of behaviors. (See Repository for Details)", url="https://github.com/Ashiepaws/BullyGB"), + Test("ashiepaws/strikethrough.gb", rom="ashiepaws/strikethrough.gb", runtime=0.5, description="Abuse of OAM DMA transfers during PPU modes 2 and 3 causing interference with data reads from the PPU."), ] diff --git a/testroms/hacktix/bully.gb b/testroms/ashiepaws/bully.gb similarity index 100% rename from testroms/hacktix/bully.gb rename to testroms/ashiepaws/bully.gb diff --git a/testroms/hacktix/bully.png b/testroms/ashiepaws/bully.png similarity index 100% rename from testroms/hacktix/bully.png rename to testroms/ashiepaws/bully.png diff --git a/testroms/hacktix/strikethrough.gb b/testroms/ashiepaws/strikethrough.gb similarity index 100% rename from testroms/hacktix/strikethrough.gb rename to testroms/ashiepaws/strikethrough.gb diff --git a/testroms/hacktix/strikethrough.png b/testroms/ashiepaws/strikethrough.png similarity index 100% rename from testroms/hacktix/strikethrough.png rename to testroms/ashiepaws/strikethrough.png