Skip to content

Commit

Permalink
Fixes conditional comparison in shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
akern40 committed Nov 29, 2024
1 parent 8271d64 commit 4086769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/all-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ cargo test -v -p ndarray -p ndarray-rand --release --features "$FEATURES" $QC_FE
# BLAS tests
cargo test -p ndarray --lib -v --features blas
cargo test -p blas-mock-tests -v
if [ "$CHANNEL" == "1.64.0" ]; then
if [ "$CHANNEL" = "1.64.0" ]; then
cargo test -p blas-tests -v --features blas-tests/blis-system
else
cargo test -p blas-tests -v --features blas-tests/openblas-system
fi
if [ "$CHANNEL" == "1.64.0" ]; then
if [ "$CHANNEL" = "1.64.0" ]; then
cargo test -p numeric-tests -v --features numeric-tests/test_blis
else
cargo test -p numeric-tests -v --features numeric-tests/test_blas
Expand Down

0 comments on commit 4086769

Please sign in to comment.