Moving alloy/ into xenia/cpu/ to start simplifying things.

This commit is contained in:
Ben Vanik
2015-03-24 07:46:18 -07:00
parent 59395318f3
commit 29912f44c0
519 changed files with 2246 additions and 2296 deletions

View File

@@ -452,9 +452,9 @@ class TestCommand(Command):
print('Testing...')
print('')
# Run base alloy tests.
print('Launching alloy-test runner...')
result = shell_call('"build/xenia/Debug/alloy-test"')
# Run base CPU tests.
print('Launching xe-cpu-hir-test runner...')
result = shell_call('"build/xenia/Debug/xe-cpu-hir-test"')
print('')
if result != 0:
return result
@@ -465,14 +465,14 @@ class TestCommand(Command):
print('WARNING: test files not updated!');
else:
print('Updating test files...')
result = shell_call('./src/alloy/frontend/ppc/test/update.sh')
result = shell_call('./src/xenia/cpu/frontend/ppc/test/update.sh')
print('')
if result != 0:
return result
# Start the test runner.
print('Launching alloy-ppc-test runner...')
result = shell_call('"build/xenia/Debug/alloy-ppc-test"')
print('Launching xe-cpu-ppc-test runner...')
result = shell_call('"build/xenia/Debug/xe-cpu-ppc-test"')
print('')
if result != 0:
return result