Skip to content

Commit

Permalink
Fix some of the testcases
Browse files Browse the repository at this point in the history
simple-lib and deeply and c-dependencies still have problems.
But they were nt caused by this pull request
  • Loading branch information
nielsle committed Jan 5, 2014
1 parent aa50ebd commit 4140b29
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/librustpkg/testsuite/pass/src/c-dependencies/pkg.rs
Expand Up @@ -58,7 +58,7 @@ pub fn main() {
[~"-c"],
[~"foo.c"],
"foo");
let out_p = Path::new(out_path);
let out_p = Path::new(out_path.unwrap());
out_p.as_str().unwrap().to_owned()
};
out_path
Expand Down
2 changes: 1 addition & 1 deletion src/librustpkg/testsuite/pass/src/foo/lib.rs
Expand Up @@ -8,4 +8,4 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

fn f() {}
pub fn f() {}
2 changes: 1 addition & 1 deletion src/librustpkg/testsuite/pass/src/hello-world/main.rs
Expand Up @@ -19,5 +19,5 @@ The test runner should check that, after `rustpkg build hello-world`:
*/

fn main() {
println(~"Hello world!");
println("Hello world!");
}
2 changes: 1 addition & 1 deletion src/librustpkg/testsuite/pass/src/install-paths/bench.rs
Expand Up @@ -9,7 +9,7 @@
// except according to those terms.

#[bench]
fn g() {
pub fn g() {
let mut x = 0;
while(x < 1000) {
x += 1;
Expand Down

5 comments on commit 4140b29

@bors
Copy link
Contributor

@bors bors commented on 4140b29 Jan 6, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 4140b29 Jan 6, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging nielsle/rust/rustpkg_argparse = 4140b29 into auto

@bors
Copy link
Contributor

@bors bors commented on 4140b29 Jan 6, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nielsle/rust/rustpkg_argparse = 4140b29 merged ok, testing candidate = 55bb5e5

@bors
Copy link
Contributor

@bors bors commented on 4140b29 Jan 6, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 4140b29 Jan 6, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 55bb5e5

Please sign in to comment.