Skip to content

Commit 0b64b9c

Browse files
committed
---
yaml --- r: 7270 b: refs/heads/master c: cb8eaba h: refs/heads/master v: v3
1 parent 5ed6c52 commit 0b64b9c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: e36ea8e9939dfadbf8c6e130f771442d4442cedd
2+
refs/heads/master: cb8eabab3da839b5f11f0041753f1bc1a9e73549

trunk/src/comp/driver/driver.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,8 @@ mod test {
613613
alt getopts::getopts(["--test"], opts()) {
614614
ok(m) { m }
615615
};
616-
let sessopts = build_session_options(match);
617-
let sess = build_session(sessopts, "");
616+
let sessopts = build_session_options(match, diagnostic::emit);
617+
let sess = build_session(sessopts, "", diagnostic::emit);
618618
let cfg = build_configuration(sess, "whatever", "whatever");
619619
assert (attr::contains_name(cfg, "test"));
620620
}
@@ -627,8 +627,8 @@ mod test {
627627
alt getopts::getopts(["--test", "--cfg=test"], opts()) {
628628
ok(m) { m }
629629
};
630-
let sessopts = build_session_options(match);
631-
let sess = build_session(sessopts, "");
630+
let sessopts = build_session_options(match, diagnostic::emit);
631+
let sess = build_session(sessopts, "", diagnostic::emit);
632632
let cfg = build_configuration(sess, "whatever", "whatever");
633633
let test_items = attr::find_meta_items_by_name(cfg, "test");
634634
assert (vec::len(test_items) == 1u);

0 commit comments

Comments
 (0)