From: James Jones Date: Tue, 10 Sep 2024 18:36:40 +0000 (-0500) Subject: typo (#5412) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61262b25fa0babae191caaafb2d93d420cc38e20;p=thirdparty%2Ffreeradius-server.git typo (#5412) --- diff --git a/doc/antora/modules/developers/pages/lldb.adoc b/doc/antora/modules/developers/pages/lldb.adoc index 61d05680215..a76923944ec 100644 --- a/doc/antora/modules/developers/pages/lldb.adoc +++ b/doc/antora/modules/developers/pages/lldb.adoc @@ -20,7 +20,7 @@ To run the test under lldb, tell jlibtool to run lldb, which in turn will run an TZ=GMT build/make/jlibtool --silent --mode=execute lldb --file ./build/bin/local/unit_test_attribute -- -F ./src/tests/fuzzer-corpus -D ./share/dictionary -d ./src/tests/unit -r "build/tests/unit/data_types.txt" src/tests/unit/data_types.txt ---- -`--file` tells lldb what it's debugging, `--` tells it that all that follows should be passed to `unit_test_module`. That can appear in lldb commands to cause following arguments to be passed to a subcommand--an example of lldb's consistent syntax. +`--file` tells lldb what it's debugging, `--` tells it that all that follows should be passed to `unit_test_attribute`. That can appear in lldb commands to cause following arguments to be passed to a subcommand--an example of lldb's consistent syntax. lldb provides a lot of facilities for extending the debugger, defining new commands, and even defining how to display values of particular types. Since the immediate goal was providing an understandable display for select types used in FreeRADIUS, we could have done that, but the work's already been done in FreeRADIUS--why replicate it? lldb's Python scripting lets one call C functions, thus making the display consistent with minimal work.