diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-04-18 16:15:17 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-04-22 18:17:32 -0700 |
| commit | d834c0d59d7b4febbf8dc411b5d3aa925ee7a447 (patch) | |
| tree | 137b6d32ff0797ccbed6b5c94b28b3c5bf5830b0 /src/librustpkg | |
| parent | 05f9586d0682e87362a5783edc7e5238094b8ae2 (diff) | |
| download | rust-d834c0d59d7b4febbf8dc411b5d3aa925ee7a447.tar.gz rust-d834c0d59d7b4febbf8dc411b5d3aa925ee7a447.zip | |
docs: Sketch out rustpkg manual
Diffstat (limited to 'src/librustpkg')
| -rw-r--r-- | src/librustpkg/testsuite/fail/src/no-inferred-crates/src/zzyzx.rs (renamed from src/librustpkg/testsuite/fail/no-inferred-crates/zzyzx.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/simple-lib/simple-lib.rc | 21 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/deeply/nested/path/foo/src/main.rs (renamed from src/librustpkg/testsuite/pass/deeply/nested/path/foo/main.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/external-crate/src/main.rs (renamed from src/librustpkg/testsuite/pass/external-crate/main.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/fancy-lib/pkg.rs (renamed from src/librustpkg/testsuite/pass/fancy-lib/pkg.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/fancy-lib/src/bar.rs (renamed from src/librustpkg/testsuite/pass/fancy-lib/bar.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/fancy-lib/src/fancy-lib.rs (renamed from src/librustpkg/testsuite/pass/fancy-lib/fancy-lib.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/fancy-lib/src/foo.rs (renamed from src/librustpkg/testsuite/pass/fancy-lib/foo.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/hello-world/src/main.rs (renamed from src/librustpkg/testsuite/pass/hello-world/main.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/install-paths/src/bench.rs (renamed from src/librustpkg/testsuite/pass/install-paths/bench.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/install-paths/src/lib.rs (renamed from src/librustpkg/testsuite/pass/install-paths/lib.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/install-paths/src/main.rs (renamed from src/librustpkg/testsuite/pass/install-paths/main.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/install-paths/src/test.rs (renamed from src/librustpkg/testsuite/pass/install-paths/test.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/simple-lib/src/bar.rs (renamed from src/librustpkg/testsuite/pass/simple-lib/bar.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/simple-lib/src/foo.rs (renamed from src/librustpkg/testsuite/pass/simple-lib/foo.rs) | 0 | ||||
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/simple-lib/src/lib.rs (renamed from src/librustpkg/testsuite/pass/simple-lib/lib.rs) | 0 |
16 files changed, 0 insertions, 21 deletions
diff --git a/src/librustpkg/testsuite/fail/no-inferred-crates/zzyzx.rs b/src/librustpkg/testsuite/fail/src/no-inferred-crates/src/zzyzx.rs index c9c1f00fb08..c9c1f00fb08 100644 --- a/src/librustpkg/testsuite/fail/no-inferred-crates/zzyzx.rs +++ b/src/librustpkg/testsuite/fail/src/no-inferred-crates/src/zzyzx.rs diff --git a/src/librustpkg/testsuite/pass/simple-lib/simple-lib.rc b/src/librustpkg/testsuite/pass/simple-lib/simple-lib.rc deleted file mode 100644 index 1cdca6cdd5d..00000000000 --- a/src/librustpkg/testsuite/pass/simple-lib/simple-lib.rc +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2013 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or -// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license -// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - -/* -The test runner should check that, after `rustpkg build simple-lib`: - * testsuite/simple-lib/build/ exists - * testsuite/simple-lib/build/ contains a library named libsimple_lib - * testsuite/simple-lib/build/ does not contain an executable -*/ - -extern mod std; - -pub mod foo; -pub mod bar; diff --git a/src/librustpkg/testsuite/pass/deeply/nested/path/foo/main.rs b/src/librustpkg/testsuite/pass/src/deeply/nested/path/foo/src/main.rs index 41041ccb509..41041ccb509 100644 --- a/src/librustpkg/testsuite/pass/deeply/nested/path/foo/main.rs +++ b/src/librustpkg/testsuite/pass/src/deeply/nested/path/foo/src/main.rs diff --git a/src/librustpkg/testsuite/pass/external-crate/main.rs b/src/librustpkg/testsuite/pass/src/external-crate/src/main.rs index d094bcd6bba..d094bcd6bba 100644 --- a/src/librustpkg/testsuite/pass/external-crate/main.rs +++ b/src/librustpkg/testsuite/pass/src/external-crate/src/main.rs diff --git a/src/librustpkg/testsuite/pass/fancy-lib/pkg.rs b/src/librustpkg/testsuite/pass/src/fancy-lib/pkg.rs index be3c68d731b..be3c68d731b 100644 --- a/src/librustpkg/testsuite/pass/fancy-lib/pkg.rs +++ b/src/librustpkg/testsuite/pass/src/fancy-lib/pkg.rs diff --git a/src/librustpkg/testsuite/pass/fancy-lib/bar.rs b/src/librustpkg/testsuite/pass/src/fancy-lib/src/bar.rs index ffbc6e2a7f9..ffbc6e2a7f9 100644 --- a/src/librustpkg/testsuite/pass/fancy-lib/bar.rs +++ b/src/librustpkg/testsuite/pass/src/fancy-lib/src/bar.rs diff --git a/src/librustpkg/testsuite/pass/fancy-lib/fancy-lib.rs b/src/librustpkg/testsuite/pass/src/fancy-lib/src/fancy-lib.rs index 55261a82098..55261a82098 100644 --- a/src/librustpkg/testsuite/pass/fancy-lib/fancy-lib.rs +++ b/src/librustpkg/testsuite/pass/src/fancy-lib/src/fancy-lib.rs diff --git a/src/librustpkg/testsuite/pass/fancy-lib/foo.rs b/src/librustpkg/testsuite/pass/src/fancy-lib/src/foo.rs index 542a6af402d..542a6af402d 100644 --- a/src/librustpkg/testsuite/pass/fancy-lib/foo.rs +++ b/src/librustpkg/testsuite/pass/src/fancy-lib/src/foo.rs diff --git a/src/librustpkg/testsuite/pass/hello-world/main.rs b/src/librustpkg/testsuite/pass/src/hello-world/src/main.rs index 2ef387d9620..2ef387d9620 100644 --- a/src/librustpkg/testsuite/pass/hello-world/main.rs +++ b/src/librustpkg/testsuite/pass/src/hello-world/src/main.rs diff --git a/src/librustpkg/testsuite/pass/install-paths/bench.rs b/src/librustpkg/testsuite/pass/src/install-paths/src/bench.rs index e1641ccf074..e1641ccf074 100644 --- a/src/librustpkg/testsuite/pass/install-paths/bench.rs +++ b/src/librustpkg/testsuite/pass/src/install-paths/src/bench.rs diff --git a/src/librustpkg/testsuite/pass/install-paths/lib.rs b/src/librustpkg/testsuite/pass/src/install-paths/src/lib.rs index baf90446f7a..baf90446f7a 100644 --- a/src/librustpkg/testsuite/pass/install-paths/lib.rs +++ b/src/librustpkg/testsuite/pass/src/install-paths/src/lib.rs diff --git a/src/librustpkg/testsuite/pass/install-paths/main.rs b/src/librustpkg/testsuite/pass/src/install-paths/src/main.rs index 37e606dcb1a..37e606dcb1a 100644 --- a/src/librustpkg/testsuite/pass/install-paths/main.rs +++ b/src/librustpkg/testsuite/pass/src/install-paths/src/main.rs diff --git a/src/librustpkg/testsuite/pass/install-paths/test.rs b/src/librustpkg/testsuite/pass/src/install-paths/src/test.rs index acfae9e04fb..acfae9e04fb 100644 --- a/src/librustpkg/testsuite/pass/install-paths/test.rs +++ b/src/librustpkg/testsuite/pass/src/install-paths/src/test.rs diff --git a/src/librustpkg/testsuite/pass/simple-lib/bar.rs b/src/librustpkg/testsuite/pass/src/simple-lib/src/bar.rs index ffbc6e2a7f9..ffbc6e2a7f9 100644 --- a/src/librustpkg/testsuite/pass/simple-lib/bar.rs +++ b/src/librustpkg/testsuite/pass/src/simple-lib/src/bar.rs diff --git a/src/librustpkg/testsuite/pass/simple-lib/foo.rs b/src/librustpkg/testsuite/pass/src/simple-lib/src/foo.rs index 542a6af402d..542a6af402d 100644 --- a/src/librustpkg/testsuite/pass/simple-lib/foo.rs +++ b/src/librustpkg/testsuite/pass/src/simple-lib/src/foo.rs diff --git a/src/librustpkg/testsuite/pass/simple-lib/lib.rs b/src/librustpkg/testsuite/pass/src/simple-lib/src/lib.rs index 1cdca6cdd5d..1cdca6cdd5d 100644 --- a/src/librustpkg/testsuite/pass/simple-lib/lib.rs +++ b/src/librustpkg/testsuite/pass/src/simple-lib/src/lib.rs |
