Add preopt to the maintainer scripts.

This commit is contained in:
Dan Gohman
2018-11-07 16:02:17 -08:00
parent fd875c3f5a
commit 19dc75f45a
2 changed files with 2 additions and 1 deletions

View File

@@ -37,6 +37,7 @@ echo git commit -a -m "\"Bump version to $version"\"
echo git push
for crate in \
entity bforest codegen/meta codegen frontend native \
preopt \
reader wasm module \
faerie umbrella simplejit
do

View File

@@ -13,7 +13,7 @@ function banner {
}
# Test those packages which have no_std support.
LIBS="codegen frontend wasm native module simplejit umbrella"
LIBS="codegen frontend wasm native preopt module simplejit umbrella"
for LIB in $LIBS; do
banner "Rust unit tests in $LIB"
pushd "lib/$LIB" >/dev/null