main.cpp 256 B

123456789101112131415
  1. #include <stdio.h>
  2. #include <stdint.h>
  3. #include "CppUTest/CommandLineTestRunner.h"
  4. #ifdef DSP_TEST
  5. int main( int argc, char **argv )
  6. {
  7. int32_t test;
  8. printf("Hello World\n");
  9. printf("Hello DSP\n");
  10. return RUN_ALL_TESTS(argc, argv);
  11. return 0;
  12. }
  13. #endif