mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-11-04 09:02:12 +00:00 
			
		
		
		
	Update build script for AndroidUiAutoBenchmark
- can be run from any folder (provided GNU readlink is available) - if build fails, non 0 exit code is returned for proper command chaining - copies all *.class files into the class_dir (not just BaseUiAutomation)
This commit is contained in:
		@@ -43,15 +43,42 @@ TEMPLATES_DIR = os.path.join(os.path.dirname(__file__), 'templates')
 | 
			
		||||
 | 
			
		||||
UIAUTO_BUILD_SCRIPT = """#!/bin/bash
 | 
			
		||||
 | 
			
		||||
# CD into build dir if possible - allows building from any directory
 | 
			
		||||
script_path='.'
 | 
			
		||||
if `readlink -f $$0 &>/dev/null`; then
 | 
			
		||||
    script_path=`readlink -f $$0 2>/dev/null`
 | 
			
		||||
fi
 | 
			
		||||
script_dir=`dirname $$script_path`
 | 
			
		||||
cd $$script_dir
 | 
			
		||||
 | 
			
		||||
# Ensure build.xml exists before starting
 | 
			
		||||
if [[ ! -f build.xml ]]; then
 | 
			
		||||
    echo 'Ant build.xml file not found! Check that you are in the right directory.'
 | 
			
		||||
    exit 9
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# Copy base classes from wlauto dist
 | 
			
		||||
class_dir=bin/classes/com/arm/wlauto/uiauto
 | 
			
		||||
base_class=`python -c "import os, wlauto; print os.path.join(os.path.dirname(wlauto.__file__), 'common', 'android', 'BaseUiAutomation.class')"`
 | 
			
		||||
base_classes=`python -c "import os, wlauto; print os.path.join(os.path.dirname(wlauto.__file__), 'common', 'android', '*.class')"`
 | 
			
		||||
mkdir -p $$class_dir
 | 
			
		||||
cp $$base_class $$class_dir
 | 
			
		||||
cp $$base_classes $$class_dir
 | 
			
		||||
 | 
			
		||||
# Build and return appropriate exit code if failed
 | 
			
		||||
ant build
 | 
			
		||||
exit_code=$$?
 | 
			
		||||
if [[ $$exit_code -ne 0 ]]; then
 | 
			
		||||
    echo "ERROR: 'ant build' exited with code $$exit_code"
 | 
			
		||||
    exit $$exit_code
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
if [[ -f bin/${package_name}.jar ]]; then
 | 
			
		||||
    cp bin/${package_name}.jar ..
 | 
			
		||||
# If successful move JAR file to workload folder (overwrite previous)
 | 
			
		||||
package=${package_name}.jar
 | 
			
		||||
rm -f ../$$package
 | 
			
		||||
if [[ -f bin/$$package ]]; then
 | 
			
		||||
    cp bin/$$package ..
 | 
			
		||||
else
 | 
			
		||||
    echo 'ERROR: UiAutomator JAR could not be found!'
 | 
			
		||||
    exit 9
 | 
			
		||||
fi
 | 
			
		||||
"""
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user