main.cc 334 字节
Newer Older
R
execute  
rensilin 已提交
1 2 3
#include <gtest/gtest.h>
#include <gflags/gflags.h>
#include <glog/logging.h>
R
rensilin 已提交
4
#include "paddle/fluid/pybind/pybind.h"
R
execute  
rensilin 已提交
5 6

int32_t main(int32_t argc, char** argv) {
R
rensilin 已提交
7
    ::google::InitGoogleLogging(argv[0]);
R
execute  
rensilin 已提交
8 9 10 11
    ::testing::InitGoogleTest(&argc, argv);
    ::google::ParseCommandLineFlags(&argc, &argv, true);
    return RUN_ALL_TESTS();
}