1. 16 5月, 2014 1 次提交
    • B
      auto merge of #13948 : huonw/rust/test-regex-filter, r=alexcrichton · ba5f5300
      bors 提交于
      This allows writing a regex to filter tests more precisely, rather than having to list long paths e.g.
      
      ```
      $ ./stdtest-x86_64-unknown-linux-gnu 'vec.*clone'
      
      running 2 tests
      test vec::tests::test_clone ... ok
      test vec::tests::test_clone_from ... ok
      
      test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured
      ```
      
      The regex change is fully backwards compatible, since test names are Rust
      identifiers + `:`, and hence not special regex characters.
      
      (See commits for details.)
      ba5f5300
  2. 15 5月, 2014 39 次提交