OpENerTests.cpp 314 B

12345678910111213141516
  1. #include "OpENerTests.h"
  2. extern "C" {
  3. #include "endianconv.h"
  4. }
  5. int main(int argc,
  6. char **argv) {
  7. /* These checks are here to make sure assertions outside test runs don't crash */
  8. CHECK(true);
  9. LONGS_EQUAL(1, 1);
  10. DetermineEndianess();
  11. return CommandLineTestRunner::RunAllTests(argc, argv);
  12. }