bryancall commented on issue #8848:
URL: https://github.com/apache/trafficserver/issues/8848#issuecomment-1126370819
Doing a simple catch test works:
```
12:07:38 zeus:(master)~/files/src/c/test_code$ cat catch.cc
#define CATCH_CONFIG_MAIN
#include "catch.hpp"
#include <fmt/core.h>
TEST_CASE("test", "test")
{
REQUIRE(1 == 1);
fmt::print("hello world\n");
}
12:07:47 zeus:(master)~/files/src/c/test_code$ g++ -O3 -lfmt catch.cc &&
./a.out
hello world
===============================================================================
All tests passed (1 assertion in 1 test case)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]