diff --git a/README.md b/README.md index 869bee2..80c409b 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ PS3 Autotests A repository of PS3 programs performing several tests on the PS3 platform. Inspired by the [PSP Autotests](https://github.com/hrydgard/pspautotests) repository, and shares some goals with it and proposes some other ones: +* Provide a platform for benchmarking PS3 emulators and comparing their performance with a real PS3. * Allow people to see how to use some obscure-newly-discovered APIs and features. * Allow PS3 emulators to avoid some regressions while performing refactorings and to have a reference while implementing APIs. -* Provide a platform for benchmarking PS3 emulators and comparing their performance with a real PS3. The main idea behind this is having several files per test unit: diff --git a/tests/cpu/hello_world/hello_world.c b/tests/cpu/hello_world/hello_world.c new file mode 100644 index 0000000..5d91d03 --- /dev/null +++ b/tests/cpu/hello_world/hello_world.c @@ -0,0 +1,7 @@ +#include + +int main(void) +{ + printf("Hello World!\n"); + return 0; +} diff --git a/tests/cpu/hello_world/hello_world.expected b/tests/cpu/hello_world/hello_world.expected new file mode 100644 index 0000000..980a0d5 --- /dev/null +++ b/tests/cpu/hello_world/hello_world.expected @@ -0,0 +1 @@ +Hello World! diff --git a/tests/cpu/hello_world/hello_world.ppu.self b/tests/cpu/hello_world/hello_world.ppu.self new file mode 100644 index 0000000..78aea21 Binary files /dev/null and b/tests/cpu/hello_world/hello_world.ppu.self differ