mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-19 07:15:36 -04:00
17 lines
339 B
Bash
17 lines
339 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -xe
|
|
|
|
source $(dirname $0)/sm-tooltool-config.sh
|
|
|
|
cd "$SRCDIR/js/rust"
|
|
|
|
cp $SRCDIR/.cargo/config.in $SRCDIR/.cargo/config
|
|
|
|
export LD_LIBRARY_PATH="$MOZ_FETCHES_DIR/gcc/lib64"
|
|
# Enable backtraces if we panic.
|
|
export RUST_BACKTRACE=1
|
|
|
|
cargo test --verbose --frozen --features debugmozjs
|
|
cargo test --verbose --frozen
|