From 8a3292e33dec8e56aeba9c54839e8a9c84ae4200 Mon Sep 17 00:00:00 2001 From: edmccard Date: Fri, 30 Mar 2012 16:42:54 -0400 Subject: [PATCH] uncommented certain tests --- test/test_bus.d | 16 ++++++++-------- test/test_decimal.d | 2 -- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/test/test_bus.d b/test/test_bus.d index 3ae85bf..34dbb9f 100644 --- a/test/test_bus.d +++ b/test/test_bus.d @@ -766,19 +766,19 @@ unittest for (int op = 0x00; op < 0x100; op++) test_opcode_timing!T4(cast(ubyte)op); - alias CPU!("65C02", false, true) T1; + alias CPU!("65C02", false, true) T5; for (int op = 0x00; op < 0x100; op++) - test_opcode_timing!T1(cast(ubyte)op); + test_opcode_timing!T5(cast(ubyte)op); - alias CPU!("65C02", true, true) T2; + alias CPU!("65C02", true, true) T6; for (int op = 0x00; op < 0x100; op++) - test_opcode_timing!T2(cast(ubyte)op); + test_opcode_timing!T6(cast(ubyte)op); - alias CPU!("6502", false, true) T3; + alias CPU!("6502", false, true) T7; for (int op = 0x00; op < 0x100; op++) - test_opcode_timing!T3(cast(ubyte)op); + test_opcode_timing!T7(cast(ubyte)op); - alias CPU!("6502", true, true) T4; + alias CPU!("6502", true, true) T8; for (int op = 0x00; op < 0x100; op++) - test_opcode_timing!T4(cast(ubyte)op); + test_opcode_timing!T8(cast(ubyte)op); } diff --git a/test/test_decimal.d b/test/test_decimal.d index a6df0f6..a6c63be 100644 --- a/test/test_decimal.d +++ b/test/test_decimal.d @@ -231,7 +231,6 @@ unittest writeln("Testing decimal mode, CMOS(Strict.no, Cumulative.no)"); testDecimalMode!(CPU!("65C02", false, false))(); -/+ writeln("Testing decimal mode, NMOS(Strict.no, Cumulative.yes)"); testDecimalMode!(CPU!("6502", false, true))(); writeln("Testing decimal mode, CMOS(Strict.no, Cumulative.yes)"); @@ -246,5 +245,4 @@ unittest testDecimalMode!(CPU!("6502", true, true))(); writeln("Testing decimal mode, CMOS(Strict.yes, Cumulative.yes)"); testDecimalMode!(CPU!("65C02", true, true))(); -+/ }