CMake/Tests/MathTest/MathTestExec.cxx
Kitware Robot 0b96ae1f6a Revise C++ coding style using clang-format with "east const"
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.

* If you reached this commit for a line in `git blame`, re-run the blame
  operation starting at the parent of this commit to see older history
  for the content.

* See the parent commit for instructions to rebase a change across this
  style transition commit.

Issue: #26123
2025-01-23 13:09:50 -05:00

47 lines
819 B
C++

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int res = 0;
bool print = false;
void test_expression(int x, int y, char const* 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");
}
}
int main(int argc, char* argv[])
{
if (argc > 2) {
printf("Usage: %s [print]\n", argv[0]);
return 1;
}
if (argc > 1) {
if (strcmp(argv[1], "print") != 0) {
printf("Usage: %s [print]\n", argv[0]);
return 1;
}
print = true;
}
#include "MathTestTests.h"
if (res != 0) {
printf("%s: %d math tests failed\n", argv[0], res);
return 1;
}
return 0;
}