From f723abe68b42ca1855fbeaa8127bcf93e80d0582 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sun, 17 Mar 2013 19:24:35 +0100 Subject: [PATCH] Update for pspautotests --- android/jni/TestRunner.cpp | 10 ++++++---- pspautotests | 2 +- test.py | 8 +++++--- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/android/jni/TestRunner.cpp b/android/jni/TestRunner.cpp index f876a10d36..3bd093615e 100644 --- a/android/jni/TestRunner.cpp +++ b/android/jni/TestRunner.cpp @@ -38,15 +38,17 @@ #include "TestRunner.h" -const char *testsToRun[] = { +static const char * const testsToRun[] = { "cpu/cpu_alu/cpu_alu", "cpu/fpu/fpu", "cpu/icache/icache", "cpu/lsu/lsu", - "cpu/vfpu/base", - "cpu/vfpu/colors/vfpu_colors", - "cpu/vfpu/convert/vfpu_convert", + "cpu/vfpu/vector", + "cpu/vfpu/matrix", + "cpu/vfpu/convert", + "cpu/vfpu/colors", "cpu/vfpu/prefixes", + "cpu/vfpu/gum", }; void RunTests() diff --git a/pspautotests b/pspautotests index eff3076dd8..faf148bef1 160000 --- a/pspautotests +++ b/pspautotests @@ -1 +1 @@ -Subproject commit eff3076dd8a0bd067410e1765470d22f1a9e925c +Subproject commit faf148bef19cd1dc3cb305f93156e3bbf4de0d58 diff --git a/test.py b/test.py index 2ab3de5454..7e3efca9c9 100755 --- a/test.py +++ b/test.py @@ -40,10 +40,12 @@ class Command(object): # These have worked and should keep working always - regression tests. tests_good = [ "cpu/cpu_alu/cpu_alu", - "cpu/vfpu/base", - "cpu/vfpu/convert/vfpu_convert", + "cpu/vfpu/vector", + "cpu/vfpu/matrix", + "cpu/vfpu/convert", "cpu/vfpu/prefixes", - "cpu/vfpu/colors/vfpu_colors", + "cpu/vfpu/colors", + "cpu/vfpu/gum", "cpu/icache/icache", "cpu/lsu/lsu", "cpu/fpu/fpu",