You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Refactor] Unify the unit tests related names for BE and FE (StarRocks#15667)
There are some inconsistencies between the unit tests of BE and FE
This pull request unify the two scripts.
1. rename run-ut.sh to run-be-ut.sh
2. use parameter --test to run specified test
`./run-fe-ut.sh --run [TEST_NAME]`
`./run-fe-ut.sh --gtest_filter [TEST_NAME_WILDCARD]`
3. Add a new paramter --dry-run to only compile and build the unit tests
`./run-fe-ut.sh --dry-run`
`./run-be-ut.sh --dry-run`
Copy file name to clipboardexpand all lines: docs/developers/build-starrocks/handbook.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -27,17 +27,17 @@ and, only build FE by
27
27
28
28
Unit tests of BE and FE are separted. In general, you can run BE test by
29
29
```
30
-
./run-ut.sh --run
30
+
./run-be-ut.sh
31
31
```
32
32
33
33
run FE test by
34
34
```
35
-
./run-fe-ut.sh --run
35
+
./run-fe-ut.sh
36
36
```
37
37
38
38
## How to run BE UT in command line
39
39
40
-
Now, BE UT needs some dependency to run, and `./run-ut.sh` helps it. But it is not flexible enough. When you want to run UT in the command-line, you can execute
40
+
Now, BE UT needs some dependency to run, and `./run-be-ut.sh` helps it. But it is not flexible enough. When you want to run UT in the command-line, you can execute
0 commit comments