@@ -64,6 +64,7 @@ pub fn parse_config(args: Vec<String>) -> Config {
6464 . optopt ( "" , "rust-demangler-path" , "path to rust-demangler to use in tests" , "PATH" )
6565 . reqopt ( "" , "python" , "path to python to use for doc tests" , "PATH" )
6666 . optopt ( "" , "jsondocck-path" , "path to jsondocck to use for doc tests" , "PATH" )
67+ . optopt ( "" , "jsondoclint-path" , "path to jsondoclint to use for doc tests" , "PATH" )
6768 . optopt ( "" , "valgrind-path" , "path to Valgrind executable for Valgrind tests" , "PROGRAM" )
6869 . optflag ( "" , "force-valgrind" , "fail if Valgrind tests cannot be run under Valgrind" )
6970 . optopt ( "" , "run-clang-based-tests-with" , "path to Clang executable" , "PATH" )
@@ -226,6 +227,7 @@ pub fn parse_config(args: Vec<String>) -> Config {
226227 rust_demangler_path : matches. opt_str ( "rust-demangler-path" ) . map ( PathBuf :: from) ,
227228 python : matches. opt_str ( "python" ) . unwrap ( ) ,
228229 jsondocck_path : matches. opt_str ( "jsondocck-path" ) ,
230+ jsondoclint_path : matches. opt_str ( "jsondoclint-path" ) ,
229231 valgrind_path : matches. opt_str ( "valgrind-path" ) ,
230232 force_valgrind : matches. opt_present ( "force-valgrind" ) ,
231233 run_clang_based_tests_with : matches. opt_str ( "run-clang-based-tests-with" ) ,
0 commit comments