fake.c 238 B

12345678910111213141516171819
  1. /*
  2. * Fake test allows debugging of the driver itself
  3. */
  4. #include "test.h"
  5. RESULT
  6. test_fake()
  7. {
  8. return OK;
  9. }
  10. static Test fake_tests [] = {
  11. {"fake", test_fake},
  12. {NULL, NULL}
  13. };
  14. DEFINE_TEST_GROUP_INIT(fake_tests_init, fake_tests)