Skip to content

Commit

Permalink
Fix: Muted warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Anny0nn committed Sep 2, 2024
1 parent 227eab9 commit 784d946
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ build_and_test() {
fi

echo "$dir: 2/3 Building..."
if cargo build > /dev/null 2>&1; then
if RUSTFLAGS=-Awarnings cargo build --quiet > /dev/null; then
echo "$dir: 2/3 Build Ok"
else
echo "$dir: 2/3 Build Failed"
Expand All @@ -39,7 +39,7 @@ build_and_test() {
fi

echo "$dir: 3/3 Testing..."
if cargo test > /dev/null 2>&1; then
if RUSTFLAGS=-Awarnings cargo test --quiet > /dev/null; then
echo "$dir: 3/3 Test Ok"
eval "$result_var=\"$dir: Ok\""
else
Expand Down

0 comments on commit 784d946

Please sign in to comment.