You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
260 B

  1. #include "wpi_test.h"
  2. #include "../../version.h"
  3. int main (void) {
  4. int major, minor;
  5. wiringPiVersion(&major, &minor);
  6. CheckSame("version major", major, VERSION_MAJOR);
  7. CheckSame("version minor", minor, VERSION_MINOR);
  8. return UnitTestState();
  9. }