diff options
| author | 2018-03-01 10:36:47 +0000 | |
|---|---|---|
| committer | 2018-03-01 10:36:47 +0000 | |
| commit | 7d437e7f73a6566168e560c2968ad97178e528cf (patch) | |
| tree | 9ffe213f18c1ee0f6774c0905daf32645c386a5e | |
| parent | e74bdcb04ac9fc6447db9cb5066a2b9a397060fa (diff) | |
| parent | 66418b18717fc035298f1b61c22c862ce54efca7 (diff) | |
Merge "Change 677-fsi check script to only keep messages it cares about." am: e58709d045 am: d1dad92528
am: 66418b1871
Change-Id: I73f26c943519cb9fa41d61821357b051584cbafa
| -rw-r--r-- | test/677-fsi/check | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/677-fsi/check b/test/677-fsi/check index a84cf65434..7b22bd1fc5 100644 --- a/test/677-fsi/check +++ b/test/677-fsi/check @@ -14,8 +14,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Remove part of message containing the JDWP log (only on target) -sed -s '/^.*JDWP support\./d' "$2" > "$2.tmp" +# Only keep the lines we're interested in. +sed -s '/^.*: oat file has dex code, but APK has uncompressed dex code\|Hello World/!d' "$2" > "$2.tmp" # Remove part of message containing filename. sed -s 's/^.*: //' "$2.tmp" > "$2.tmp2" |