Skip to content

Commit d785564

Browse files
committed
feat(build.sh): build.sh rusttest now invokes a quick mode for just running Rust tests
1 parent f9435be commit d785564

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.sh

+8
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ echo "============================= [build.sh] =================================
2929
# valgrind (if valgrind is used)
3030

3131

32+
if [[ "$1" == 'rusttest' ]]; then
33+
export TEST_C=False
34+
export REBUILD_C=False
35+
export CLEAN_RUST_TARGETS=False
36+
export BUILD_RELEASE=False
37+
export TEST_RUST=True
38+
fi
39+
3240

3341
######################################################
3442
#### Parameters used by build.sh

0 commit comments

Comments
 (0)