C++ 中的简单调试器
通过报告其系统调用和处理其信号来启动和跟踪给定程序,bash 脚本运行并检查程序结果。
您可以使用以下命令运行程序:
make clean
./picodb
还有使用./picodb readfile < data> OUTPUT”的命令./bash_script和 data.txt 包含以下用于 picodb(CLI) 的命令:
t all
b off
r stdout output_read
r stdin input_read
go
r stdout output_fread
r stdin input_fread
go
quit
包括生成文件:
CC = g++
all : picodb
picodb : main.o functions.o CLI_functions.o heade
2022-10-26 21:00:22
209KB
C++
1