cmake/Tests/MathTest/MathTestExec.cxx

47 lines
819 B
C++
Raw Normal View History

#include <stdio.h>
2018-10-28 12:09:07 +01:00
#include <stdlib.h>
#include <string.h>
2018-10-28 12:09:07 +01:00
int res = 0;
bool print = false;
void test_expression(int x, int y, const char* text)
{
bool fail = (x) != (y);
if (fail) {
res++;
printf("Problem with EXPR:");
}
if (fail || print) {
printf("Expression: \"%s\" in CMake returns %d", text, (y));
if (fail) {
printf(" while in C returns: %d", (x));
}
printf("\n");
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
}
int main(int argc, char* argv[])
{
2018-10-28 12:09:07 +01:00
if (argc > 2) {
printf("Usage: %s [print]\n", argv[0]);
return 1;
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
if (argc > 1) {
if (strcmp(argv[1], "print") != 0) {
printf("Usage: %s [print]\n", argv[0]);
return 1;
}
print = true;
}
#include "MathTestTests.h"
2018-10-28 12:09:07 +01:00
2016-07-09 11:21:54 +02:00
if (res != 0) {
printf("%s: %d math tests failed\n", argv[0], res);
return 1;
2016-07-09 11:21:54 +02:00
}
return 0;
}