File: main.cpp

package info (click to toggle)
vim-youcompleteme 0%2B20140207%2Bgit18be5c2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,396 kB
  • ctags: 1,488
  • sloc: python: 4,436; cpp: 3,349; sh: 239; makefile: 44; cs: 22
file content (13 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "gtest/gtest.h"
#include "gmock/gmock.h"
#include <boost/python.hpp>

int main( int argc, char **argv ) {
  Py_Initialize();
  // Necessary because of usage of the ReleaseGil class
  PyEval_InitThreads();

  testing::InitGoogleMock( &argc, argv );
  return RUN_ALL_TESTS();
}