File tree 2 files changed +8
-14
lines changed
2 files changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -80,10 +80,9 @@ This might be aliased in the future. It is also possible to run tests filtered
80
80
by using:
81
81
82
82
``` bash
83
- > filterTest . * i2147.scala
83
+ > vulpix i2147.scala
84
84
```
85
85
86
86
This will run both the test ` ./tests/pos/i2147.scala ` and
87
- ` ./tests/partest-test/i2147.scala ` since both of these match the given regular
88
- expression. This also means that you could run ` filterTest .* ` to run all
89
- integration tests.
87
+ ` ./tests/partest-test/i2147.scala ` since both of these match the given string.
88
+ This also means that you could run ` vulpix ` with no arguments to run all integration tests.
Original file line number Diff line number Diff line change @@ -57,20 +57,15 @@ $ sbt
57
57
To test a specific test tests/x/y.scala (for example tests/pos/t210.scala):
58
58
59
59
``` bash
60
- > filterTest . * pos/t210.scala
60
+ > vulpix pos/t210.scala
61
61
```
62
62
63
- The filterTest task takes a regular expression as its argument. For example,
64
- you could run a negative and a positive test with:
63
+ The ` vulpix ` task uses its argument for a substring test. For example, you
64
+ could run both a negative and a positive test with the same name
65
+ (` pos/i2101.scala ` & ` neg/i2101.scala ` ):
65
66
66
67
``` bash
67
- > filterTest (.* pos/t697.scala)| (.* neg/i2101.scala)
68
- ```
69
-
70
- or if they have the same name, the equivalent can be achieved with:
71
-
72
- ``` bash
73
- > filterTest .* /i2101.scala
68
+ > vulpix i2101.scala
74
69
```
75
70
76
71
## Inspecting Trees with Type Stealer ##
You can’t perform that action at this time.
0 commit comments