@@ -71,7 +71,6 @@ pub fn parse_config(args: ~[~str]) -> config {
71
71
optopt ( "" , "ratchet-noise-percent" ,
72
72
"percent change in metrics to consider noise" , "N" ) ,
73
73
optflag ( "" , "jit" , "run tests under the JIT" ) ,
74
- optflag ( "" , "newrt" , "run tests on the new runtime / scheduler" ) ,
75
74
optopt ( "" , "target" , "the target to build for" , "TARGET" ) ,
76
75
optopt ( "" , "adb-path" , "path to the android debugger" , "PATH" ) ,
77
76
optopt ( "" , "adb-test-dir" , "path to tests for the android debugger" , "PATH" ) ,
@@ -137,7 +136,6 @@ pub fn parse_config(args: ~[~str]) -> config {
137
136
runtool : getopts:: opt_maybe_str ( matches, "runtool" ) ,
138
137
rustcflags : getopts:: opt_maybe_str ( matches, "rustcflags" ) ,
139
138
jit : getopts:: opt_present ( matches, "jit" ) ,
140
- newrt : getopts:: opt_present ( matches, "newrt" ) ,
141
139
target : opt_str2 ( getopts:: opt_maybe_str ( matches, "target" ) ) . to_str ( ) ,
142
140
adb_path : opt_str2 ( getopts:: opt_maybe_str ( matches, "adb-path" ) ) . to_str ( ) ,
143
141
adb_test_dir :
@@ -171,7 +169,6 @@ pub fn log_config(config: &config) {
171
169
logv ( c, fmt ! ( "runtool: %s" , opt_str( & config. runtool) ) ) ;
172
170
logv ( c, fmt ! ( "rustcflags: %s" , opt_str( & config. rustcflags) ) ) ;
173
171
logv ( c, fmt ! ( "jit: %b" , config. jit) ) ;
174
- logv ( c, fmt ! ( "newrt: %b" , config. newrt) ) ;
175
172
logv ( c, fmt ! ( "target: %s" , config. target) ) ;
176
173
logv ( c, fmt ! ( "adb_path: %s" , config. adb_path) ) ;
177
174
logv ( c, fmt ! ( "adb_test_dir: %s" , config. adb_test_dir) ) ;
0 commit comments