@@ -64,6 +64,7 @@ pub fn parse_config(args: Vec<String>) -> Config {
64
64
. optopt ( "" , "rust-demangler-path" , "path to rust-demangler to use in tests" , "PATH" )
65
65
. reqopt ( "" , "python" , "path to python to use for doc tests" , "PATH" )
66
66
. 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" )
67
68
. optopt ( "" , "valgrind-path" , "path to Valgrind executable for Valgrind tests" , "PROGRAM" )
68
69
. optflag ( "" , "force-valgrind" , "fail if Valgrind tests cannot be run under Valgrind" )
69
70
. optopt ( "" , "run-clang-based-tests-with" , "path to Clang executable" , "PATH" )
@@ -226,6 +227,7 @@ pub fn parse_config(args: Vec<String>) -> Config {
226
227
rust_demangler_path : matches. opt_str ( "rust-demangler-path" ) . map ( PathBuf :: from) ,
227
228
python : matches. opt_str ( "python" ) . unwrap ( ) ,
228
229
jsondocck_path : matches. opt_str ( "jsondocck-path" ) ,
230
+ jsondoclint_path : matches. opt_str ( "jsondoclint-path" ) ,
229
231
valgrind_path : matches. opt_str ( "valgrind-path" ) ,
230
232
force_valgrind : matches. opt_present ( "force-valgrind" ) ,
231
233
run_clang_based_tests_with : matches. opt_str ( "run-clang-based-tests-with" ) ,
0 commit comments