aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArseniy Antonov <arseniy.antonov@intel.com>2014-07-21 16:27:24 +0400
committerArseniy Antonov <arseniy.antonov@intel.com>2014-07-21 16:27:24 +0400
commit716918f893d954e27af59b3181cecf8f425bb72c (patch)
treec1f570674a3632e6e4854531b2e8c8a643c2da0e /tests
parent4e6dd934b97dcfa90c4fc30cf5591b93a8e97a57 (diff)
downloadndk-716918f893d954e27af59b3181cecf8f425bb72c.tar.gz
Fix pattern for thin-archive test
Newest version of "file" tool are able to detect thin archives, and print to output "thin archive" instead of "data". Change-Id: Ib81ed8d6b0a260e3ac55f19c316fa9d01303fbc4 Signed-off-by: Arseniy Antonov <arseniy.antonov@intel.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/build/thin-archives/build.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/build/thin-archives/build.sh b/tests/build/thin-archives/build.sh
index c497b647c..b1500a30e 100755
--- a/tests/build/thin-archives/build.sh
+++ b/tests/build/thin-archives/build.sh
@@ -24,6 +24,9 @@ is_file_type_thin_archive () {
*"ar archive"*)
return 1
;;
+ *"thin archive"*)
+ return 0
+ ;;
"data")
return 0
;;