@@ -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" ) ,
@@ -135,7 +134,6 @@ pub fn parse_config(args: ~[~str]) -> config {
135134 runtool : getopts:: opt_maybe_str ( matches, "runtool" ) ,
136135 rustcflags : getopts:: opt_maybe_str ( matches, "rustcflags" ) ,
137136 jit : getopts:: opt_present ( matches, "jit" ) ,
138- newrt : getopts:: opt_present ( matches, "newrt" ) ,
139137 target : opt_str2 ( getopts:: opt_maybe_str ( matches, "target" ) ) . to_str ( ) ,
140138 adb_path : opt_str2 ( getopts:: opt_maybe_str ( matches, "adb-path" ) ) . to_str ( ) ,
141139 adb_test_dir :
@@ -169,7 +167,6 @@ pub fn log_config(config: &config) {
169167 logv ( c, fmt ! ( "runtool: %s" , opt_str( & config. runtool) ) ) ;
170168 logv ( c, fmt ! ( "rustcflags: %s" , opt_str( & config. rustcflags) ) ) ;
171169 logv ( c, fmt ! ( "jit: %b" , config. jit) ) ;
172- logv ( c, fmt ! ( "newrt: %b" , config. newrt) ) ;
173170 logv ( c, fmt ! ( "target: %s" , config. target) ) ;
174171 logv ( c, fmt ! ( "adb_path: %s" , config. adb_path) ) ;
175172 logv ( c, fmt ! ( "adb_test_dir: %s" , config. adb_test_dir) ) ;
0 commit comments