@@ -71,7 +71,6 @@ pub fn parse_config(args: ~[~str]) -> config {
7171 optopt ( "" , "ratchet-noise-percent" ,
7272 "percent change in metrics to consider noise" , "N" ) ,
7373 optflag ( "" , "jit" , "run tests under the JIT" ) ,
74- optflag ( "" , "newrt" , "run tests on the new runtime / scheduler" ) ,
7574 optopt ( "" , "target" , "the target to build for" , "TARGET" ) ,
7675 optopt ( "" , "adb-path" , "path to the android debugger" , "PATH" ) ,
7776 optopt ( "" , "adb-test-dir" , "path to tests for the android debugger" , "PATH" ) ,
@@ -137,7 +136,6 @@ pub fn parse_config(args: ~[~str]) -> config {
137136 runtool : getopts:: opt_maybe_str ( matches, "runtool" ) ,
138137 rustcflags : getopts:: opt_maybe_str ( matches, "rustcflags" ) ,
139138 jit : getopts:: opt_present ( matches, "jit" ) ,
140- newrt : getopts:: opt_present ( matches, "newrt" ) ,
141139 target : opt_str2 ( getopts:: opt_maybe_str ( matches, "target" ) ) . to_str ( ) ,
142140 adb_path : opt_str2 ( getopts:: opt_maybe_str ( matches, "adb-path" ) ) . to_str ( ) ,
143141 adb_test_dir :
@@ -171,7 +169,6 @@ pub fn log_config(config: &config) {
171169 logv ( c, fmt ! ( "runtool: %s" , opt_str( & config. runtool) ) ) ;
172170 logv ( c, fmt ! ( "rustcflags: %s" , opt_str( & config. rustcflags) ) ) ;
173171 logv ( c, fmt ! ( "jit: %b" , config. jit) ) ;
174- logv ( c, fmt ! ( "newrt: %b" , config. newrt) ) ;
175172 logv ( c, fmt ! ( "target: %s" , config. target) ) ;
176173 logv ( c, fmt ! ( "adb_path: %s" , config. adb_path) ) ;
177174 logv ( c, fmt ! ( "adb_test_dir: %s" , config. adb_test_dir) ) ;
0 commit comments