Parcourir la source

Minor update to docs.

master
Ben Kurtovic il y a 8 ans
Parent
révision
0b2f3c0089
1 fichiers modifiés avec 7 ajouts et 8 suppressions
  1. +7
    -8
      tests/runner.c

+ 7
- 8
tests/runner.c Voir le fichier

@@ -9,7 +9,7 @@
#include "../src/logging.h" #include "../src/logging.h"


/* /*
TODO
Run tests for the Z80 CPU.
*/ */
static bool test_cpu() static bool test_cpu()
{ {
@@ -18,7 +18,7 @@ static bool test_cpu()
} }


/* /*
TODO
Run tests for the VDP.
*/ */
static bool test_vdp() static bool test_vdp()
{ {
@@ -27,7 +27,7 @@ static bool test_vdp()
} }


/* /*
TODO
Run tests for the SN76489 PSG.
*/ */
static bool test_psg() static bool test_psg()
{ {
@@ -36,7 +36,7 @@ static bool test_psg()
} }


/* /*
TODO
Run tests for the assembler.
*/ */
static bool test_asm() static bool test_asm()
{ {
@@ -45,7 +45,7 @@ static bool test_asm()
} }


/* /*
TODO
Run tests for the disassembler.
*/ */
static bool test_dis() static bool test_dis()
{ {
@@ -54,7 +54,7 @@ static bool test_dis()
} }


/* /*
TODO
Run integration tests (i.e., multiple components working together).
*/ */
static bool test_integrate() static bool test_integrate()
{ {
@@ -62,14 +62,13 @@ static bool test_integrate()
return true; return true;
} }



/* /*
Main function. Main function.
*/ */
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
if (argc != 2) if (argc != 2)
FATAL("a component name is required")
FATAL("a single component name is required")


const char *component = argv[1], *name; const char *component = argv[1], *name;
bool (*func)(); bool (*func)();


Chargement…
Annuler
Enregistrer