File: main.cpp

package info (click to toggle)
e-antic 1.3.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,700 kB
  • sloc: ansic: 5,873; cpp: 3,890; python: 952; makefile: 452; sh: 35; javascript: 5
file content (12 lines) | stat: -rw-r--r-- 211 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#include <flint/flint.h>

#define CATCH_CONFIG_RUNNER
#include <catch2/catch.hpp>

int main( int argc, char* argv[] ) {
  int result = Catch::Session().run( argc, argv );

  flint_cleanup();

  return result;
}