Skip to content

Commit 27a9dfb

Browse files
committed
Fixed verbosity error in test-ui
1 parent 7c9d750 commit 27a9dfb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,11 @@ remake-ui-tests:
6060
# This will run without saving source files. Run the script manually to do this.
6161
bash tests/ui/remake_ui_tests.sh "$$RUST_DIR_ROOT"
6262

63+
test-ui: VERBOSE=0
6364
test-ui:
6465
# Check if RUST_DIR_ROOT is set
6566
if [ -z "$$RUST_DIR_ROOT" ]; then \
6667
echo "Error: RUST_DIR_ROOT is not set. Please set it to the absolute path to rust compiler checkout."; \
6768
exit 1; \
6869
fi
69-
bash tests/ui/run_ui_tests.sh "$$RUST_DIR_ROOT" "$$VERBOSE"
70+
bash tests/ui/run_ui_tests.sh "$$RUST_DIR_ROOT" "${VERBOSE}"

0 commit comments

Comments
 (0)