CN112612712A - Software breakpoint debugging method and device based on extended script - Google Patents

Software breakpoint debugging method and device based on extended script Download PDF

Info

Publication number
CN112612712A
CN112612712A CN202011599164.2A CN202011599164A CN112612712A CN 112612712 A CN112612712 A CN 112612712A CN 202011599164 A CN202011599164 A CN 202011599164A CN 112612712 A CN112612712 A CN 112612712A
Authority
CN
China
Prior art keywords
software
debugging
function
script
python
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN202011599164.2A
Other languages
Chinese (zh)
Other versions
CN112612712B (en
Inventor
苏再添
黄志炜
孙善为
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Xiamen Meiya Pico Information Co Ltd
Original Assignee
Xiamen Meiya Pico Information Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Xiamen Meiya Pico Information Co Ltd filed Critical Xiamen Meiya Pico Information Co Ltd
Priority to CN202011599164.2A priority Critical patent/CN112612712B/en
Publication of CN112612712A publication Critical patent/CN112612712A/en
Application granted granted Critical
Publication of CN112612712B publication Critical patent/CN112612712B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/362Software debugging
    • G06F11/3644Software debugging by instrumenting at runtime
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/362Software debugging
    • G06F11/3632Software debugging of specific synchronisation aspects
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/37Compiler construction; Parser generation

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Hardware Design (AREA)
  • Quality & Reliability (AREA)
  • Software Systems (AREA)
  • Devices For Executing Special Programs (AREA)
  • Debugging And Monitoring (AREA)
  • Stored Programmes (AREA)

Abstract

The invention provides a software breakpoint debugging method and device based on an extended script, wherein the method comprises the following steps: an extended script generating step, namely compiling a function of software compiled by a compiling type language into an extended script for realizing the function by using an interpretation language, and adding a debugging anchor point in the extended script; a conversion step of converting a link library of software written in a compiling type language related to the function into a link library which can be called by an interpretation language; and debugging, namely performing breakpoint debugging on the software by a debugger based on the debugging anchor point added in the extension script. The problem that a software debugging method in the prior art is only suitable for the development environment and cannot debug the software in the running process is solved, synchronous debugging of the running software based on the extension script is achieved, the memory occupation is small, and the problem can be reproduced and conveniently checked.

Description

Software breakpoint debugging method and device based on extended script
Technical Field
The invention relates to the technical field of computer program debugging, in particular to a software breakpoint debugging method and device based on an extended script.
Background
Software is a set of computer data and instructions organized in a specific order, and software development refers to a process of building a software system or software parts in a system according to user requirements, and is a system engineering including requirement capture, requirement analysis, design, implementation, debugging and testing.
Various unexpected software problems inevitably occur in the software development and use process, and the existing methods for locating the software problems comprise running log analysis, memory DUMP analysis and code single-step debugging.
The above problem of the positioning software is disadvantageous in that: (1) running the log requires that the debugging instructions for generating the log are written into the corresponding position of the software program in advance in a hard-coded mode. The debugging instructions written by hard coding are not easy to change and delete, and the software program written with the debugging instructions needs to be compiled, linked and operated again, so that the original operating environment of the software error is likely to be lost/changed, and the software error is not easy to reproduce. (2) The memory DUMP analysis needs to store a copy of the current entire occupied memory on a disk, a large amount of memory is occupied for each analysis, the analysis result is static, and the steps of the memory DUMP are repeatedly executed if dynamic data are to be checked. (3) The code debugging needs to have all the codes of the software and the corresponding development environment, and if the software is protected by a shell, the codes are mixed or encrypted, and the single-step debugging cannot be carried out.
In addition, the software debugging methods all require that a debugger has the relevant codes and development environment of software, and a relatively common use scene is used by the developer when the developer checks found problems in the software development stage. These methods are not suitable for a scenario that a user needs to dynamically debug a software problem in real time in a software using stage, that is, in the prior art, the software cannot be debugged while running.
Disclosure of Invention
The present invention is directed to one or more of the above technical drawbacks of the prior art, and provides a specific method for solving the above technical problems.
A software breakpoint debugging method based on extended scripts comprises the following steps:
an extended script generating step, namely compiling a function of software compiled by a compiling type language into an extended script for realizing the function by using an interpretation language, and adding a debugging anchor point in the extended script;
a conversion step of converting a link library of software written in a compiling type language related to the function into a link library which can be called by an interpretation language;
and debugging, namely performing breakpoint debugging on the software by a debugger based on the debugging anchor point added in the extension script.
Further, the compiled language is C + +, the interpreted language is Python, and the debugger is a Python debugger.
Further, the extended script generating step is operated as: defining a set of interfaces F ═ { F) for said software1,f2,f3,…,fn-1,fnF is a fine-grained function interface; interface set P ═ { P ] of extended script1,p2,p3,…,pn-1,pnP is a function interface of the extended script, wherein piAnd fiFunctionally corresponding, i is more than or equal to 1 and less than or equal to n; defining an interface set required by realizing one function of the software as S, wherein the S belongs to P; and compiling an extended script for realizing the function based on the S, and adding a debugging anchor point X at a code entrance of the extended script.
Further, the converting step operates to: and converting the link library DLL of the software written by the compiling language C + + related to the function into the link library pyd which can be called by the interpreted language Python.
Further, the debugging step operates as: starting debugging operation on the software interface to open a Python debugger and simultaneously executing the extension script, wherein the extension script waits for external additional debugging at an anchor point X; the Python debugger executes additional debugging, and the code of the extended script is interrupted in the next line of the anchor point X; python debugger steps through single step when executing to function pxWhen p is greater than pxConverts the parameters into parameters of C + + and transfers the converted parameters of C + + to the function fxExecuting; will function fxThe result after execution is converted to Python form by pxAnd returning and displaying the result of each variable on a Python debugger.
The invention also provides a software breakpoint debugging device based on the extended script, which comprises:
the extension script generating unit is used for compiling a function of software compiled by a compiling type language into an extension script for realizing the function by using an interpretation language and adding a debugging anchor point into the extension script;
a conversion unit that converts a link library of software written in a compiled language to which the function relates into a link library that can be called by an interpreted language;
and the debugging unit is used for carrying out breakpoint debugging on the software by the debugger based on the debugging anchor point added in the extension script.
Further, the compiled language is C + +, the interpreted language is Python, and the debugger is a Python debugger.
Further, the extended script generating unit performs the operations of: defining a set of interfaces F ═ { F) for said software1,f2,f3,…,fn-1,fnF is a fine-grained function interface; interface set P ═ { P ] of extended script1,p2,p3,…,pn-1,pnP is a function interface of the extended script, wherein piAnd fiFunctionally corresponding, i is more than or equal to 1 and less than or equal to n; defining an interface set required by realizing one function of the software as S, wherein the S belongs to P; and compiling an extended script for realizing the function based on the S, and adding a debugging anchor point X at a code entrance of the extended script.
Still further, the conversion unit is operative to: and converting the link library DLL of the software written by the compiling language C + + related to the function into the link library pyd which can be called by the interpreted language Python.
Further, the debugging unit performs the operations of: starting debugging operation on the software interface to open a Python debugger and simultaneously executing the extension script, wherein the Python debugger is started on the software interfaceThe extended script waits for external additional debugging at the anchor point X; the Python debugger executes additional debugging, and the code of the extended script is interrupted in the next line of the anchor point X; python debugger steps through single step when executing to function pxWhen p is greater than pxConverts the parameters into parameters of C + + and transfers the converted parameters of C + + to the function fxExecuting; will function fxThe result after execution is converted to Python form by pxAnd returning and displaying the result of each variable on a Python debugger.
The invention has the technical effects that: the invention provides a software breakpoint debugging method and device based on an extended script, wherein the method comprises the following steps: an extended script generating step, namely compiling a function of software compiled by a compiling type language into an extended script for realizing the function by using an interpretation language, and adding a debugging anchor point in the extended script; a conversion step of converting a link library of software written in a compiling type language related to the function into a link library which can be called by an interpretation language; and debugging, namely performing breakpoint debugging on the software by a debugger based on the debugging anchor point added in the extension script. The invention solves the technical problems that the software debugging method in the prior art is only suitable for the condition of a development environment and can not debug the software in the running process, realizes breakpoint debugging in the running process of the software through an extension script, improves the positioning accuracy of software errors, can reproduce the faults of the software and can debug the software in real time, directly and formally replaces some sub-modules of the software with the extension script to realize the effect of dynamically debugging the service flow of the sub-modules, solves the technical problems that the traditional direct C + + realized sub-module can not dynamically debug the service flow, solves the technical problems that the analysis result in the prior art is static, if the dynamic data is checked, the step of repeatedly executing a memory DUMP is needed to cause overlarge memory occupation, and realizes data exchange between C + + and Python, the C + + memory data structure and the Python memory data structure are mutually converted, so that the Python can transmit parameters to the C + + interface and read return results without concerning differences, synchronous debugging of running software based on extension scripts can be realized, the memory occupation is small, and problems can be reproduced and conveniently checked.
Drawings
Other features, objects and advantages of the present application will become more apparent upon reading of the following detailed description of non-limiting embodiments thereof, made with reference to the accompanying drawings.
FIG. 1 is a flowchart of a software breakpoint debugging method based on extended scripts according to an embodiment of the present invention.
Fig. 2 is a block diagram of an extended script-based software breakpoint debugging apparatus according to an embodiment of the present invention.
Detailed Description
The present application will be described in further detail with reference to the following drawings and examples. It is to be understood that the specific embodiments described herein are merely illustrative of the relevant invention and not restrictive of the invention. It should be noted that, for convenience of description, only the portions related to the related invention are shown in the drawings.
It should be noted that the embodiments and features of the embodiments in the present application may be combined with each other without conflict. The present application will be described in detail below with reference to the embodiments with reference to the attached drawings.
Fig. 1 shows an extended script-based software breakpoint debugging method of the present invention, which is implemented by a computer, where a compiled language of the present invention: the source code is compiled into a file of machine language before the program is executed, the program does not need to be translated again during running, the compiling result is directly used, and the program execution efficiency is high. Such as C, C + +, etc. The interpreted language of the invention: the program does not need to be compiled in advance and the program code is stored in a text manner. When the program is operated, the interpreter interprets and operates the program line by line, and the program execution efficiency is low. Such as Python, Lua, etc. The method comprises the following steps:
an extended script generating step S101, writing a function of software written by a compiling type language into an extended script for realizing the function by using an interpretation language, and adding a debugging anchor point in the extended script; for example, the software is developed by using a C + + programming language, the extension script is written by using Python, and the software is extended by using the characteristics of an interpreted language, so that the effect of debugging the software function in the running process can be realized. The extension script file is a script file written by a debugger, can be modified in real time from a software interface, and can realize the same or more functions as the software by calling Python API and use the current state and data of the software. That is, the compiled language may be C + +, the interpreted language may be Python, and the debugger may be a Python debugger.
A conversion step S102, converting the link library of the software written by the compiling type language related to the function into a link library which can be called by an interpretation language; in the invention, a Python API is used as an interface which can be called by a script file, and a C + + dynamic link library (Dll) is exported from an interface set and is converted into an pyd format which can be called by Python.
And a debugging step S103, performing breakpoint debugging on the software by the debugger based on the debugging anchor point added in the extension script.
The invention solves the problem that the software debugging method in the prior art is only suitable for the development environment and cannot debug the software in the running process, realizes breakpoint debugging in software running through the extended script, improves the positioning accuracy of software errors, can reproduce software faults and can debug the software in real time, which is an important invention point of the invention.
In one embodiment, the extended script generating step S101 operates as follows: defining a set of interfaces F ═ { F) for said software1,f2,f3,…,fn-1,fnF is a fine-grained function interface; interface set P ═ { P ] of extended script1,p2,p3,…,pn-1,pnP is a function interface of the extended script, wherein piAnd fiFunctionally corresponding, i is more than or equal to 1 and less than or equal to n; defining an interface set required by realizing one function of the software as S, wherein the S belongs to P; writing an extended script for realizing the function based on the S, and adding a debugging anchor at a code entrance of the extended scriptPoint X. The meaning of interface set F means: the fine-grained interface (i.e. API, which may be in the form of dynamic link library. DLL) of software only contains the most basic functions, and is used for combining and calling specific business function modules. The interface functions in the set must be simple and robust enough to reduce errors that may occur.
In the invention, the extended script is directly used for formally replacing some sub-modules of the software, the effect of dynamically debugging the service flow of the sub-modules can be achieved, the problem that the analysis result is static and the step of repeatedly executing the memory DUMP is needed to check the dynamic data to cause the overlarge memory occupation in the prior art is solved, and the method belongs to another important invention point.
In one embodiment, the operation of the converting step S102 is: and converting the link library DLL of the software written by the compiling language C + + related to the function into the link library pyd which can be called by the interpreted language Python.
In one embodiment, the debugging step S103 is operated as follows: starting debugging operation on the software interface to open a Python debugger and simultaneously executing the extension script, wherein the extension script waits for external additional debugging at an anchor point X; the Python debugger executes additional debugging, and the code of the extended script is interrupted in the next line of the anchor point X; python debugger steps through single step when executing to function pxWhen p is greater than pxConverts the parameters into parameters of C + + and transfers the converted parameters of C + + to the function fxExecuting; will function fxThe result after execution is converted to Python form by pxAnd returning and displaying the result of each variable on a Python debugger.
The invention realizes data exchange between C + + and Python, and mutually converts the memory data structure of C + + and the memory data structure of Python, so that the Python can transmit parameters to the C + + interface and read the return result without concerning the difference, thereby realizing synchronous debugging of running software based on the extended script, having small memory occupation and reproducible problem, and being an important invention point of the invention.
Fig. 2 shows an extended script-based software breakpoint debugging device of the present invention, which is installed on a computer, and the compiled language of the present invention: the source code is compiled into a file of machine language before the program is executed, the program does not need to be translated again during running, the compiling result is directly used, and the program execution efficiency is high. Such as C, C + +, etc. The interpreted language of the invention: the program does not need to be compiled in advance and the program code is stored in a text manner. When the program is operated, the interpreter interprets and operates the program line by line, and the program execution efficiency is low. Such as Python, Lua, etc. The device includes:
an extended script generating unit 201, which writes a function of software written in a compiled language using an interpreted language to implement an extended script of the function, and adds a debug anchor in the extended script; for example, the software is developed by using a C + + programming language, the extension script is written by using Python, and the software is extended by using the characteristics of an interpreted language, so that the effect of debugging the software function in the running process can be realized. The extension script file is a script file written by a debugger, can be modified in real time from a software interface, and can realize the same or more functions as the software by calling Python API and use the current state and data of the software. That is, the compiled language may be C + +, the interpreted language may be Python, and the debugger may be a Python debugger.
A conversion unit 202 that converts a link library of software written in a compiled language related to the function into a link library that can be called by an interpreted language; in the invention, a Python API is used as an interface which can be called by a script file, and a C + + dynamic link library (Dll) is exported from an interface set and is converted into an pyd format which can be called by Python.
And the debugging unit 203 is used for performing breakpoint debugging on the software through a debugger based on the debugging anchor point added in the extension script.
The invention solves the problem that the software debugging method in the prior art is only suitable for the development environment and cannot debug the software in the running process, realizes breakpoint debugging in software running through the extended script, improves the positioning accuracy of software errors, can reproduce software faults and can debug the software in real time, which is an important invention point of the invention.
In one embodiment, the extended script generating unit 201 operates to: defining a set of interfaces F ═ { F) for said software1,f2,f3,…,fn-1,fnF is a fine-grained function interface; interface set P ═ { P ] of extended script1,p2,p3,…,pn-1,pnP is a function interface of the extended script, wherein piAnd fiFunctionally corresponding, i is more than or equal to 1 and less than or equal to n; defining an interface set required by realizing one function of the software as S, wherein the S belongs to P; and compiling an extended script for realizing the function based on the S, and adding a debugging anchor point X at a code entrance of the extended script. The meaning of interface set F means: the fine-grained interface (i.e. API, which may be in the form of dynamic link library. DLL) of software only contains the most basic functions, and is used for combining and calling specific business function modules. The interface functions in the set must be simple and robust enough to reduce errors that may occur.
In the invention, the extended script is directly used for formally replacing some sub-modules of the software, the effect of dynamically debugging the service flow of the sub-modules can be achieved, the problem that the analysis result is static and the step of repeatedly executing the memory DUMP is needed to check the dynamic data to cause the overlarge memory occupation in the prior art is solved, and the method belongs to another important invention point.
In one embodiment, the operation of the conversion unit 202 is: and converting the link library DLL of the software written by the compiling language C + + related to the function into the link library pyd which can be called by the interpreted language Python.
In one embodiment, the operation of the debugging unit 203 is: initiating a debug operation on an interface of the software toOpening a Python debugger, simultaneously executing the extension script, and waiting for external additional debugging of the extension script at an anchor point X; the Python debugger executes additional debugging, and the code of the extended script is interrupted in the next line of the anchor point X; python debugger steps through single step when executing to function pxWhen p is greater than pxConverts the parameters into parameters of C + + and transfers the converted parameters of C + + to the function fxExecuting; will function fxThe result after execution is converted to Python form by pxAnd returning and displaying the result of each variable on a Python debugger.
The invention realizes data exchange between C + + and Python, and mutually converts the memory data structure of C + + and the memory data structure of Python, so that the Python can transmit parameters to the C + + interface and read the return result without concerning the difference, thereby realizing synchronous debugging of running software based on the extension script, having small memory occupation and reproducible problem, and being an important invention point of the invention.
For convenience of description, the above methods are described as being divided into various units by function, and described separately. Of course, the functionality of the units may be implemented in one or more software and/or hardware when implementing the present application.
From the above description of the embodiments, it is clear to those skilled in the art that the present application can be implemented by software plus necessary general hardware platform. Based on such understanding, the technical solutions of the present application may be essentially or partially implemented in the form of a software product, which may be stored in a storage medium, such as a ROM/RAM, a magnetic disk, an optical disk, etc., and includes several instructions for enabling a computer device (which may be a personal computer, a server, or a network device, etc.) to execute the method according to the embodiments or some parts of the embodiments of the present application.
Finally, it should be noted that: although the present invention has been described in detail with reference to the above embodiments, it should be understood by those skilled in the art that: modifications and equivalents may be made thereto without departing from the spirit and scope of the invention and it is intended to cover in the claims the invention as defined in the appended claims.

Claims (10)

1. A software breakpoint debugging method based on an extended script is characterized by comprising the following steps:
an extended script generating step, namely compiling a function of software compiled by a compiling type language into an extended script for realizing the function by using an interpretation language, and adding a debugging anchor point in the extended script;
a conversion step of converting a link library of software written in a compiling type language related to the function into a link library which can be called by an interpretation language;
and debugging, namely performing breakpoint debugging on the software by a debugger based on the debugging anchor point added in the extension script.
2. A method according to claim 1, characterized in that: the compiling type language is C + +, the interpretation language is Python, and the debugger is a Python debugger.
3. A method according to claim 2, characterized in that: the operation of the extended script generating step is as follows: defining a set of interfaces F ═ { F) for said software1,f2,f3,…,fn-1,fnF is a fine-grained function interface; interface set P ═ { P ] of extended script1,p2,p3,…,pn-1,pnP is a function interface of the extended script, wherein piAnd fiFunctionally corresponding, i is more than or equal to 1 and less than or equal to n; defining an interface set required by realizing one function of the software as S, wherein the S belongs to P; and compiling an extended script for realizing the function based on the S, and adding a debugging anchor point X at a code entrance of the extended script.
4. A method according to claim 3, characterized in that: the operation of the converting step is: and converting the link library DLL of the software written by the compiling language C + + related to the function into the link library pyd which can be called by the interpreted language Python.
5. The method according to claim 4, characterized in that: the debugging step is operated as follows: starting debugging operation on the software interface to open a Python debugger and simultaneously executing the extension script, wherein the extension script waits for external additional debugging at an anchor point X; the Python debugger executes additional debugging, and the code of the extended script is interrupted in the next line of the anchor point X; python debugger steps through single step when executing to function pxWhen p is greater than pxConverts the parameters into parameters of C + + and transfers the converted parameters of C + + to the function fxExecuting; will function fxThe result after execution is converted to Python form by pxAnd returning and displaying the result of each variable on a Python debugger.
6. An extended script-based software breakpoint debugging device, characterized in that the device comprises:
the extension script generating unit is used for compiling a function of software compiled by a compiling type language into an extension script for realizing the function by using an interpretation language and adding a debugging anchor point into the extension script;
a conversion unit that converts a link library of software written in a compiled language to which the function relates into a link library that can be called by an interpreted language;
and the debugging unit is used for carrying out breakpoint debugging on the software by the debugger based on the debugging anchor point added in the extension script.
7. The apparatus of claim 6, wherein: the compiling type language is C + +, the interpretation language is Python, and the debugger is a Python debugger.
8. The apparatus of claim 7, wherein: the extended script generating unit executes the following operations: defining a set of interfaces F ═ { F) for said software1,f2,f3,…,fn-1,fnF is a fine-grained function interface; interface set P ═ { P ] of extended script1,p2,p3,…,pn-1,pnP is a function interface of the extended script, wherein piAnd fiFunctionally corresponding, i is more than or equal to 1 and less than or equal to n; defining an interface set required by realizing one function of the software as S, wherein the S belongs to P; and compiling an extended script for realizing the function based on the S, and adding a debugging anchor point X at a code entrance of the extended script.
9. The apparatus of claim 8, wherein: the execution operation of the conversion unit is: and converting the link library DLL of the software written by the compiling language C + + related to the function into the link library pyd which can be called by the interpreted language Python.
10. The apparatus of claim 9, wherein: the debugging unit executes the following operations: starting debugging operation on the software interface to open a Python debugger and simultaneously executing the extension script, wherein the extension script waits for external additional debugging at an anchor point X; the Python debugger executes additional debugging, and the code of the extended script is interrupted in the next line of the anchor point X; python debugger steps through single step when executing to function pxWhen p is greater than pxConverts the parameters into parameters of C + + and transfers the converted parameters of C + + to the function fxExecuting; will function fxThe result after execution is converted to Python form by pxAnd returning and displaying the result of each variable on a Python debugger.
CN202011599164.2A 2020-12-29 2020-12-29 Software breakpoint debugging method and device based on extended script Active CN112612712B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011599164.2A CN112612712B (en) 2020-12-29 2020-12-29 Software breakpoint debugging method and device based on extended script

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011599164.2A CN112612712B (en) 2020-12-29 2020-12-29 Software breakpoint debugging method and device based on extended script

Publications (2)

Publication Number Publication Date
CN112612712A true CN112612712A (en) 2021-04-06
CN112612712B CN112612712B (en) 2022-08-12

Family

ID=75248934

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011599164.2A Active CN112612712B (en) 2020-12-29 2020-12-29 Software breakpoint debugging method and device based on extended script

Country Status (1)

Country Link
CN (1) CN112612712B (en)

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102289403A (en) * 2010-06-15 2011-12-21 微软公司 Script debugging
CN104391700A (en) * 2014-11-11 2015-03-04 百度在线网络技术(北京)有限公司 Method and device for expanding functions of application program
CN105389251A (en) * 2014-08-28 2016-03-09 Sap欧洲公司 Structured query language debugger
US20160274998A1 (en) * 2015-03-18 2016-09-22 Jared Coyle Injection of code modifications in a two session debug scripting environment
CN108255694A (en) * 2016-12-28 2018-07-06 比亚迪股份有限公司 Test method and system based on interpreter
CN108628739A (en) * 2018-03-19 2018-10-09 北京奇艺世纪科技有限公司 A kind of method that Lua scripts are debugged, client, server and debugger
CN109189663A (en) * 2018-07-12 2019-01-11 武汉精测电子集团股份有限公司 A kind of plug-in unit adjustment method, test method and microkernel architecture system

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102289403A (en) * 2010-06-15 2011-12-21 微软公司 Script debugging
CN105389251A (en) * 2014-08-28 2016-03-09 Sap欧洲公司 Structured query language debugger
CN104391700A (en) * 2014-11-11 2015-03-04 百度在线网络技术(北京)有限公司 Method and device for expanding functions of application program
US20160274998A1 (en) * 2015-03-18 2016-09-22 Jared Coyle Injection of code modifications in a two session debug scripting environment
CN108255694A (en) * 2016-12-28 2018-07-06 比亚迪股份有限公司 Test method and system based on interpreter
CN108628739A (en) * 2018-03-19 2018-10-09 北京奇艺世纪科技有限公司 A kind of method that Lua scripts are debugged, client, server and debugger
CN109189663A (en) * 2018-07-12 2019-01-11 武汉精测电子集团股份有限公司 A kind of plug-in unit adjustment method, test method and microkernel architecture system

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
WEIXIN_33963189: "python和C++联合调试", 《CSDN博客 HTTPS://BLOG.CSDN.NET/WEIXIN_33963189/ARTICLE/DETAILS/86000776》 *

Also Published As

Publication number Publication date
CN112612712B (en) 2022-08-12

Similar Documents

Publication Publication Date Title
CN110096338B (en) Intelligent contract execution method, device, equipment and medium
JP5415557B2 (en) User script code conversion for debugging
US20070055911A1 (en) A Method and System for Automatically Generating a Test-Case
US8797338B2 (en) Platform agnostic screen capture tool
CN111176629A (en) Application development method and device
US10496423B2 (en) Method for opening up data and functions of terminal application based on reconstruction technology
CN115952758A (en) Chip verification method and device, electronic equipment and storage medium
CN115525282A (en) Method for realizing cross-platform desktop application program and related equipment thereof
CN113632067A (en) Emulating non-trace code with recorded execution of trace code
US11113182B2 (en) Reversible debugging in a runtime environment
CN109542464B (en) Development and deployment system, method and storage medium of IoT (Internet of things) equipment script program
US7624381B1 (en) Portable detection of start and completion of object construction
CN115705194A (en) Code processing method under hardware memory order architecture and corresponding device
CN112612712B (en) Software breakpoint debugging method and device based on extended script
US20070150866A1 (en) Displaying parameters associated with call statements
US10929126B2 (en) Intercepting and replaying interactions with transactional and database environments
US20130111431A1 (en) Validation of a system model including an activity diagram
CN116775458A (en) Interface testing method and system for dynamic link library
CN113641594B (en) Cross-terminal automatic testing method and related device
US6014516A (en) Language processing system which generates debugging source file corresponding to optimization image and method therefor
CN110673834A (en) Source code calling method and device, computer equipment and storage medium
CN111367512B (en) Method and device for creating Android library module dependency relationship in application development
US20110099534A1 (en) Information processing apparatus, execution program operation modification method, and recording medium
Wu et al. SQLite embedded database in data chain devices
CN115576858B (en) Business action execution system for low-code front-end application and readable storage medium

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant