File: main.cpp

package info (click to toggle)
e-antic 2.0.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,256 kB
  • sloc: cpp: 17,613; ansic: 5,999; python: 974; makefile: 457; sh: 35; javascript: 5
file content (12 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#include <flint/flint.h>

#define CATCH_CONFIG_RUNNER
#include "external/catch2/single_include/catch2/catch.hpp"

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

  flint_cleanup();

  return result;
}