rust/src/librustpkg
Alex Crichton 3b07f1efe5 Ignore a test which is blocking a snapshot
@catamorphism says he has a fix coming soon, so I didn't allocate an issue for
it. If it festers for more than a few days I'll open something up though.
2013-09-17 17:11:15 -07:00
..
testsuite rustpkg: Un-ignore most of the remaining tests 2013-08-19 15:27:21 -07:00
api.rs rustpkg: Pass command-line arguments to rustc 2013-09-10 16:42:41 -07:00
conditions.rs rustpkg: Use workcache 2013-09-08 20:05:12 -07:00
context.rs rustpkg: Pass command-line arguments to rustc 2013-09-10 16:42:41 -07:00
crate.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
installed_packages.rs Update clients of path.rs to use new API. 2013-09-04 13:10:32 +02:00
messages.rs Bring compiletest/rustpkg/driver up to date on std vs core 2013-07-04 16:30:48 -07:00
package_id.rs rustpkg: Support sub-package-IDs 2013-09-12 14:11:25 -07:00
package_source.rs auto merge of #9148 : jakub-/rust/rustpkg-install-mkdir-p, r=catamorphism 2013-09-13 01:00:50 -07:00
path_util.rs rustc/rustpkg: Use a target-specific subdirectory in build/ and lib/ 2013-09-13 10:43:22 -07:00
README.txt
rustpkg.rs Implementing 'rustpkg init'. 2013-09-17 10:53:32 -07:00
search.rs rustpkg: Support sub-package-IDs 2013-09-12 14:11:25 -07:00
source_control.rs Rename str::from_bytes to str::from_utf8, closes #8985 2013-09-05 14:17:24 +02:00
target.rs rustc/rusti/rustpkg: Infer packages from extern mod directives 2013-06-01 18:48:07 -07:00
tests.rs Ignore a test which is blocking a snapshot 2013-09-17 17:11:15 -07:00
usage.rs Implementing 'rustpkg init'. 2013-09-17 10:53:32 -07:00
util.rs Implementing 'rustpkg init'. 2013-09-17 10:53:32 -07:00
version.rs std: Rename {Option,Result}::chain{,_err}* to {and_then,or_else} 2013-09-12 18:54:13 -07:00
workcache_support.rs rustpkg: Use workcache 2013-09-08 20:05:12 -07:00
workspace.rs rustpkg: Support sub-package-IDs 2013-09-12 14:11:25 -07:00

Right now, commands that work are "build" and "clean".

`rustpkg build` and `rustpkg clean` should work

for example:
$ cd ~/rust/src/librustpkg/testsuite/pass
$ rustpkg build hello-world
... some output ...
$ rustpkg clean hello-world

-------------
the following test packages in librustpkg/testsuite/pass:
      * hello-world
      * install-paths
      * simple-lib
      * deeply/nested/path
      * fancy-lib

   It fails on the following test packages:
      * external-crate (no support for `extern mod` inference yet)

and should fail with proper error messages
on all of the test packages in librustpkg/testsuite/fail
      * no-inferred-crates