当前位置:主页 > 软件编程 > Python代码 >

一篇文章告诉你如何用python进行自动化测试,调用c程序

时间:2022-12-20 10:11:54 | 栏目:Python代码 | 点击:

一、介绍

python可以做测试c的程序,

用到ctypes模块

ctypes 有以下优点:

ctypes 有以下缺点:

二、方法

1、编写c函数

2、编译c函数为动态库

3、python2程序里面导入库

from ctypes import *
mm = cdll.LoadLibrary('hello.dll')##或者为hello.so
mm.print()

三、示例

windows平台

1、编写搭建动态库c函数

在这里插入图片描述

在这里插入图片描述

设置工程

在这里插入图片描述

在这里插入图片描述

编译

在这里插入图片描述

2、python导入库

在这里插入图片描述

3、结果

在这里插入图片描述

linux平台

1、编写c程序

在这里插入图片描述

2、编译成so动态库

gcc -fPIC -shared test.c -o libtest.so

在这里插入图片描述

3、编写python导入库

在这里插入图片描述

4、执行

在这里插入图片描述

总结

您可能感兴趣的文章:

相关文章