Home | History | Annotate | Download | only in tests

Lines Matching refs:RELEASE

18 # Run a few sanity checks on a given NDK release install/package
69 echo "NDK release installation, or alternatively an NDK release package."
74 echo " --package=<file> Specify NDK release archive file."
84 TMP_DIR=/tmp/ndk-$USER/tests/release
89 fail_panic "Could not uncompress NDK release package!"
121 # There must be a RELEASE file at the top of the NDK
125 local RELEASE
127 # Check that the RELEASE.TXT file is here
128 if [ ! -f "$NDK_DIR/RELEASE.TXT" ]; then
129 echo "Missing RELEASE.TXT file."
133 # Extract the release version
134 RELEASE=$(cat $NDK_DIR/RELEASE.TXT)
136 # Check that the ChangeLog file documents the release properly
140 if [ "$RELEASE" != "$CHANGELOG_RELEASE" ]; then
141 echo "CHANGES.html documents release '$CHANGELOG_RELEASE', but RELEASE.TXT contains '$RELEASE'!"
149 do_test RELEASE "Checking top-level release file"