解释To run the tests locally you can use the following: ```bash mkdir build cd build cmake .. make test -j ```
时间: 2023-08-06 19:26:47 浏览: 133
run-get-aranges.rar_The Test
这段话是在说明如何在本地运行测试。具体步骤如下:
1. 打开终端或命令行窗口,进入项目的根目录。
2. 在终端或命令行窗口中输入以下命令,创建一个新的目录 build:
```
mkdir build
```
3. 进入 build 目录:
```
cd build
```
4. 在 build 目录中使用 CMake 生成 Makefile:
```
cmake ..
```
5. 使用 make 命令来编译项目和运行测试:
```
make test -j
```
其中,`-j` 参数表示并行编译,可以加快编译速度。执行完这个命令后,会自动运行项目中的测试,并输出测试结果。
阅读全文