Skip to content

Commit aff9bc3

Browse files
committed
---
yaml --- r: 10492 b: refs/heads/snap-stage3 c: 13d4b61 h: refs/heads/master v: v3
1 parent 42f131a commit aff9bc3

File tree

9 files changed

+9
-8
lines changed

9 files changed

+9
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: f99f2e8ce2a2cea39291965ecffe847392f586b2
4+
refs/heads/snap-stage3: 13d4b61182e139dd0bd3bcc73fbeb3fa37f30170
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/snap-stage3/src/test/bench/shootout-k-nucleotide.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ fn make_sequence_processor(sz: uint, from_parent: comm::port<[u8]>, to_parent: c
122122
fn main(args: [str]) {
123123
let rdr = if os::getenv("RUST_BENCH").is_some() {
124124
// FIXME: Using this compile-time env variable is a crummy way to
125-
// get to this massive data set, but #include_bin chokes on it
125+
// get to this massive data set, but #include_bin chokes on it (#2598)
126126
let path = path::connect(
127127
#env("CFG_SRC_DIR"),
128128
"src/test/bench/shootout-k-nucleotide.data"

branches/snap-stage3/src/test/bench/task-perf-word-count-generic.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ mod map_reduce {
7777

7878
type putter<K: send, V: send> = fn(K, V);
7979

80-
// FIXME: the first K1 parameter should probably be a -, but that
81-
// doesn't parse at the moment.
80+
// FIXME: the first K1 parameter should probably be a - (#2599)
8281
type mapper<K1: send, K2: send, V: send> = fn~(K1, putter<K2, V>);
8382

8483
type getter<V: send> = fn() -> option<V>;

branches/snap-stage3/src/test/run-pass/basic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fn main() {
3939
log(debug, x);
4040
n = recv(p);
4141
n = recv(p);
42-
// FIXME: use signal-channel for this.
42+
// FIXME: use signal-channel for this. (#2600)
4343
#debug("children finished, root finishing");
4444
}
4545

branches/snap-stage3/src/test/run-pass/binops.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn test_box() {
6060
}
6161

6262
fn test_port() {
63-
// FIXME: Re-enable this once we can compare resources.
63+
// FIXME: Re-enable this once we can compare resources. (#2601)
6464
/*
6565
let p1 = comm::port::<int>();
6666
let p2 = comm::port::<int>();

branches/snap-stage3/src/test/run-pass/issue-506.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// FIXME: This test is no longer testing what it was intended to. It should
33
// be testing spawning of a native function, but is actually testing
44
// spawning some other function, then executing a native function.
5+
// #2602
56

67
/*
78
A reduced test case for Issue #506, provided by Rob Arnold.

branches/snap-stage3/src/test/run-pass/native-lib-path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// xfail-test FIXME I don't know how to test this
1+
// xfail-test FIXME I don't know how to test this (#2604)
22
// compile-flags:-L.
33
// The -L flag is also used for linking native libraries
44

branches/snap-stage3/src/test/run-pass/task-comm-16.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ fn test_tag() {
5353
send(ch, tag2(10));
5454
send(ch, tag3(10, 11u8, 'A'));
5555
// FIXME: Do port semantics really guarantee these happen in order?
56+
// (#2605)
5657
let mut t1: t;
5758
t1 = recv(po);
5859
assert (t1 == tag1);

branches/snap-stage3/src/test/run-pass/task-compare.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
A test case for issue #577, which also exposes #588
33
*/
44

5-
// FIXME: This won't work until we can compare resources
5+
// FIXME: This won't work until we can compare resources (#2601)
66
// xfail-test
77

88
use std;

0 commit comments

Comments
 (0)