AI: Add run utest in guideline for augment code.

This commit is contained in:
winlin
2025-06-30 08:10:21 -04:00
parent e84074094b
commit 1173560b55
2 changed files with 49 additions and 1 deletions

View File

@@ -69,3 +69,9 @@ build:
command: "cd trunk && make -j"
description: "Build the SRS server using parallel make in the trunk directory"
working_directory: "trunk"
run-utests:
command: "cd trunk && make utest -j && ./objs/srs_utest"
description: "Run the unit tests for SRS"
working_directory: "trunk"

44
.vscode/settings.json vendored
View File

@@ -23,6 +23,48 @@
"stack": "cpp",
"string": "cpp",
"string_view": "cpp",
"unordered_map": "cpp"
"unordered_map": "cpp",
"__bit_reference": "cpp",
"__locale": "cpp",
"__node_handle": "cpp",
"__verbose_abort": "cpp",
"any": "cpp",
"cctype": "cpp",
"charconv": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"complex": "cpp",
"condition_variable": "cpp",
"csignal": "cpp",
"cstdarg": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"execution": "cpp",
"memory": "cpp",
"forward_list": "cpp",
"fstream": "cpp",
"iomanip": "cpp",
"ios": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"locale": "cpp",
"mutex": "cpp",
"new": "cpp",
"optional": "cpp",
"print": "cpp",
"ratio": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"typeinfo": "cpp",
"variant": "cpp",
"algorithm": "cpp"
}
}