From c2af1de95b65a0cc2225565f47aa9c08fd072371 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Mon, 22 Apr 2013 17:48:21 -0700 Subject: [PATCH] rustpkg: update README saying which tests pass --- src/librustpkg/README.txt | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/src/librustpkg/README.txt b/src/librustpkg/README.txt index eacf07e01ea..acfbf395e4b 100644 --- a/src/librustpkg/README.txt +++ b/src/librustpkg/README.txt @@ -1,4 +1,24 @@ -Right now (2013-04-11), only one package works, the branch of rust-sdl at: -https://github.com/catamorphism/rust-sdl/tree/new-rustpkg +Right now, commands that work are "build" and "clean". -and only one command works, "build". +`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