资源简介
安装mysql-5.7.7,必须的插件,版本必须是,gmock-1.6.0版本,已经经过测试,插件没有问题,请大家放心使用
代码片段和文件信息
#!/usr/bin/env python
#
# Copyright 2009 Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms with or without
# modification are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# “AS IS“ AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING BUT NOT
# LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT INDIRECT INCIDENTAL
# SPECIAL EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT
# LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE
# DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY WHETHER IN CONTRACT STRICT LIABILITY OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
“““fuse_gtest_files.py v0.2.0
Fuses Google Test source code into a .h file and a .cc file.
SYNOPSIS
fuse_gtest_files.py [GTEST_ROOT_DIR] OUTPUT_DIR
Scans GTEST_ROOT_DIR for Google Test source code and generates
two files: OUTPUT_DIR/gtest/gtest.h and OUTPUT_DIR/gtest/gtest-all.cc.
Then you can build your tests by adding OUTPUT_DIR to the include
search path and linking with OUTPUT_DIR/gtest/gtest-all.cc. These
two files contain everything you need to use Google Test. Hence
you can “install“ Google Test by copying them to wherever you want.
GTEST_ROOT_DIR can be omitted and defaults to the parent
directory of the directory holding this script.
EXAMPLES
./fuse_gtest_files.py fused_gtest
./fuse_gtest_files.py path/to/unpacked/gtest fused_gtest
This tool is experimental. In particular it assumes that there is no
conditional inclusion of Google Test headers. Please report any
problems to googletestframework@googlegroups.com. You can read
http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide for
more information.
“““
__author__ = ‘wan@google.com (Zhanyong Wan)‘
import os
import re
import sets
import sys
# We assume that this file is in the scripts/ directory in the Google
# Test root directory.
DEFAULT_GTEST_ROOT_DIR = os.path.join(os.path.dirname(__file__) ‘..‘)
# Regex for matching ‘#include “gtest/...“‘.
INCLUDE_GTEST_FILE_
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-04-15 19:57 gmock-1.6.0\
目录 0 2011-04-15 19:57 gmock-1.6.0\build-aux\
文件 1841 2011-04-15 19:55 gmock-1.6.0\build-aux\config.h.in
文件 45612 2011-04-15 19:55 gmock-1.6.0\build-aux\config.guess
文件 34069 2011-04-15 19:55 gmock-1.6.0\build-aux\config.sub
文件 18615 2011-04-15 19:55 gmock-1.6.0\build-aux\depcomp
文件 13663 2011-04-15 19:55 gmock-1.6.0\build-aux\install-sh
文件 243469 2011-04-15 19:55 gmock-1.6.0\build-aux\ltmain.sh
文件 11419 2011-04-15 19:55 gmock-1.6.0\build-aux\missing
目录 0 2011-04-15 19:57 gmock-1.6.0\fused-src\
目录 0 2011-04-15 19:57 gmock-1.6.0\fused-src\gmock\
文件 500022 2011-04-15 19:57 gmock-1.6.0\fused-src\gmock\gmock.h
目录 0 2011-04-15 19:57 gmock-1.6.0\fused-src\gtest\
文件 801700 2011-04-15 19:57 gmock-1.6.0\fused-src\gtest\gtest.h
文件 389803 2011-04-15 19:57 gmock-1.6.0\fused-src\gmock-gtest-all.cc
文件 2571 2011-04-15 19:57 gmock-1.6.0\fused-src\gmock_main.cc
目录 0 2011-04-15 19:57 gmock-1.6.0\gtest\
目录 0 2011-04-15 19:57 gmock-1.6.0\gtest\m4\
文件 13302 2010-11-03 21:14 gmock-1.6.0\gtest\m4\acx_pthread.m4
文件 260519 2011-04-15 19:55 gmock-1.6.0\gtest\m4\libtool.m4
文件 11938 2011-04-15 19:55 gmock-1.6.0\gtest\m4\ltoptions.m4
文件 4372 2011-04-15 19:55 gmock-1.6.0\gtest\m4\ltsugar.m4
文件 703 2011-04-15 19:55 gmock-1.6.0\gtest\m4\ltversion.m4
文件 5707 2011-04-15 19:55 gmock-1.6.0\gtest\m4\lt~obsolete.m4
文件 3217 2010-11-03 21:14 gmock-1.6.0\gtest\m4\gtest.m4
目录 0 2011-04-15 19:57 gmock-1.6.0\gtest\build-aux\
文件 1841 2011-04-15 19:55 gmock-1.6.0\gtest\build-aux\config.h.in
文件 45612 2011-04-15 19:55 gmock-1.6.0\gtest\build-aux\config.guess
文件 34069 2011-04-15 19:55 gmock-1.6.0\gtest\build-aux\config.sub
文件 18615 2011-04-15 19:55 gmock-1.6.0\gtest\build-aux\depcomp
文件 13663 2011-04-15 19:55 gmock-1.6.0\gtest\build-aux\install-sh
............此处省略282个文件信息
相关资源
- 掘金小册MySQL是怎样运行的:从根儿上
- bison-3.0.tar.gz
- MySql和SqlServer互相转化工具
- 自动聊天数据,机器人聊天数据,M
- 2018年统计用区划代码和城乡划分代码
- qtcreator 5.9.1 mysql 编译的驱动
- .net代码生成器,可以将sqlserver、mys
- 高性能mysql第三版英文版
- EMS MySQL Manager 2010破解汉化附详细教程
- Django教务管理系统学生选课系统
- 后台权限管理系统微服务
- nodejs(express4)+mysql增删查改+批量上
- MySQL必知必会 中英文文字版合计非扫
- MySQLDBA修炼之道 高清完整PDF版
- 任意数据库类型数据转换系统 OBDB2D
- mysql-for-visualstudio-1.2.6.msi
- MySQL-JDBC-src 连接驱动包-包括源码
- mysql必知必会高清版PDF带中文书签
- MySQL实用教程第2版源代码
- 网页版在线音乐系统
- 自行车出租网站
- 全国乡镇(社区)数据库MYSQL
- mysql-for-visualstudio-1.2.6
- mysql的sql文件
- libmysqlclient.so.16(64bit)
- zabbix3.4.x 数据库表结构说明文档
- shangguiguMySQL高级脑图完整版
- MGR中文版--京东数据库技术部.pdf
- 基于eclipse+MySQL的图书馆管理系统
- mysql tool
评论
共有 条评论